diff options
author | Mike Pavone <pavone@retrodev.com> | 2012-12-26 20:18:58 -0800 |
---|---|---|
committer | Mike Pavone <pavone@retrodev.com> | 2012-12-26 20:18:58 -0800 |
commit | b1940d5f9fa6cbb97aa0f7cef0a5fa61b6cb2c95 (patch) | |
tree | c8265d79777cbfa68901ab6779a84ca63e1f03c3 /m68k_to_x86.c | |
parent | f0d831f2b1e343592d0987dffdb5eb1064bd83ae (diff) |
vertical interrupts now work
Diffstat (limited to 'm68k_to_x86.c')
-rw-r--r-- | m68k_to_x86.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/m68k_to_x86.c b/m68k_to_x86.c index 7a7a90c..8daa11e 100644 --- a/m68k_to_x86.c +++ b/m68k_to_x86.c @@ -50,7 +50,7 @@ uint8_t * cycles(uint8_t * dst, uint32_t num) uint8_t * check_cycles_int(uint8_t * dst, uint32_t address) { - dst = cmp_rr(dst, LIMIT, CYCLES, SZ_D); + dst = cmp_rr(dst, CYCLES, LIMIT, SZ_D); uint8_t * jmp_off = dst+1; dst = jcc(dst, CC_NC, dst + 7); dst = mov_ir(dst, address, SCRATCH1, SZ_D); |