mirror of
https://github.com/holub/mame
synced 2025-05-30 01:23:07 +03:00
Fixed incorrect MUL number of cycles
This commit is contained in:
parent
f6943c73e9
commit
41b154bf46
@ -1908,7 +1908,7 @@ static void HC11OP(mul)(hc11_state *cpustate)
|
||||
REG_D = (UINT8)REG_A * (UINT8)REG_B;
|
||||
CLEAR_C(cpustate);
|
||||
cpustate->ccr |= (REG_B & 0x80) ? CC_C : 0;
|
||||
CYCLES(cpustate, 3);
|
||||
CYCLES(cpustate, 10);
|
||||
}
|
||||
|
||||
/* PSHA 0x36 */
|
||||
|
Loading…
Reference in New Issue
Block a user