1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-09-27 18:55:48 +00:00

Avoid attempt to establish operand flags for undefined opcodes.

This commit is contained in:
Thomas Harte 2022-05-24 15:52:53 -04:00
parent 0f7cb2fa5a
commit f43d27541b

View File

@ -635,7 +635,7 @@ void Processor<BusHandler, dtack_is_implicit, permit_overrun, signal_will_perfor
#define SpecialCASE(x) case InstructionSet::M68k::Operation::x: MoveToStateSpecific(x)
switch(instruction_.operation) {
CASE(Undefined)
case InstructionSet::M68k::Operation::Undefined:
if(instruction_.operation == InstructionSet::M68k::Operation::Undefined) {
switch(opcode_ & 0xf000) {
default: