diff options
author | 2010-06-09 16:20:50 +0000 | |
---|---|---|
committer | 2010-06-09 16:20:50 +0000 | |
commit | eba2c140607c146d368e48539bd11e87fdfbeed6 (patch) | |
tree | ac3fa335cf9f364420c435ee2eeaf44173dab0e7 /src/emu/cpu/konami/konami.c | |
parent | ebdc4525f96f465a61acb76c728de48b3a89800c (diff) |
Change cpu execute function to just use the icount stuffed by
the scheduler, rather than manging an incoming cycle count. It was
confusing to have multiple sources of cycle counts.
Diffstat (limited to 'src/emu/cpu/konami/konami.c')
-rw-r--r-- | src/emu/cpu/konami/konami.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/emu/cpu/konami/konami.c b/src/emu/cpu/konami/konami.c index a6791144c17..592d0a566bb 100644 --- a/src/emu/cpu/konami/konami.c +++ b/src/emu/cpu/konami/konami.c @@ -473,7 +473,6 @@ static CPU_EXECUTE( konami ) { konami_state *cpustate = get_safe_token(device); - cpustate->icount = cycles; check_irq_lines(cpustate); if( cpustate->int_state & (KONAMI_CWAI | KONAMI_SYNC) ) @@ -499,8 +498,6 @@ static CPU_EXECUTE( konami ) } while( cpustate->icount > 0 ); } - - return cycles - cpustate->icount; } |