mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-26 23:52:26 +00:00
Avoid STOP.
This commit is contained in:
parent
cc7a4f7f91
commit
fdcbf617d8
@ -262,7 +262,10 @@ template <typename M68000> struct Tester {
|
|||||||
|
|
||||||
// Test only defined opcodes.
|
// Test only defined opcodes.
|
||||||
const auto instruction = decoder.decode(uint16_t(c));
|
const auto instruction = decoder.decode(uint16_t(c));
|
||||||
if(instruction.operation == InstructionSet::M68k::Operation::Undefined) {
|
if(
|
||||||
|
instruction.operation == InstructionSet::M68k::Operation::Undefined ||
|
||||||
|
instruction.operation == InstructionSet::M68k::Operation::STOP
|
||||||
|
) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user