mirror of
https://github.com/TomHarte/CLK.git
synced 2025-01-13 22:32:03 +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.
|
||||
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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user