1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-22 12:33:29 +00:00

DBcc is two-operand.

This commit is contained in:
Thomas Harte 2022-05-21 20:06:03 -04:00
parent 94288d5a94
commit 1304e930eb

View File

@ -1405,7 +1405,8 @@ void Processor<BusHandler, dtack_is_implicit, permit_overrun, signal_will_perfor
// DBcc
//
BeginState(DBcc):
operand_[0].w = uint32_t(int16_t(prefetch_.w));
operand_[0] = registers_[instruction_.reg(0)];
operand_[1].w = uint32_t(int16_t(prefetch_.w));
InstructionSet::M68k::perform<
InstructionSet::M68k::Model::M68000,