mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-23 03:32:32 +00:00
Avoid attempt to establish operand flags for undefined opcodes.
This commit is contained in:
parent
0f7cb2fa5a
commit
f43d27541b
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user