diff options
| author | 2009-06-19 19:44:06 +0000 | |
|---|---|---|
| committer | 2009-06-19 19:44:06 +0000 | |
| commit | 41b154bf462883dc99606bd9a69f9e57c1127f9a (patch) | |
| tree | ada0612f62967f30f31c30ad84b9b1ffdc62b807 /src | |
| parent | f6943c73e93d56f68fa26ab9c695c72bccfccbdd (diff) | |
Fixed incorrect MUL number of cycles
Diffstat (limited to 'src')
| -rw-r--r-- | src/emu/cpu/mc68hc11/hc11ops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cpu/mc68hc11/hc11ops.c b/src/emu/cpu/mc68hc11/hc11ops.c index 1fbdac0b702..71982f9e5f4 100644 --- a/src/emu/cpu/mc68hc11/hc11ops.c +++ b/src/emu/cpu/mc68hc11/hc11ops.c @@ -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 */ |
