mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-25 01:32:55 +00:00
Add a further category of exclusions.
This commit is contained in:
parent
740b0e35d5
commit
ea6b83815b
@ -446,6 +446,12 @@ struct MemoryLedger {
|
||||
}
|
||||
break;
|
||||
|
||||
case Instruction::Operation::STR:
|
||||
case Instruction::Operation::LDR:
|
||||
// Neither loads nor stores with R15 are matched to ARM2 behaviour by the test source.
|
||||
ignore_opcode = instruction.destination.value == 15;
|
||||
break;
|
||||
|
||||
case Instruction::Operation::STM:
|
||||
case Instruction::Operation::LDM:
|
||||
// If the PC is involved, just skip the test; PC/PSR differences abound.
|
||||
|
Loading…
Reference in New Issue
Block a user