diff options
Diffstat (limited to 'trans.c')
-rw-r--r-- | trans.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -24,6 +24,9 @@ m68k_context * sync_components(m68k_context * context, uint32_t address) if (context->current_cycle > 0x80000000) { context->current_cycle -= 0x80000000; } + if (context->status & 0x80) { + context->target_cycle = context->current_cycle; + } return context; } |