diff options
Diffstat (limited to 'blastem.c')
-rw-r--r-- | blastem.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -151,7 +151,9 @@ m68k_context * sync_components(m68k_context * context, uint32_t address) z_context->int_cycle = ZVINT_CYCLE; } z_context->target_cycle = z_context->sync_cycle < z_context->int_cycle ? z_context->sync_cycle : z_context->int_cycle; + //printf("Running Z80 from cycle %d to cycle %d. Native PC: %p\n", z_context->current_cycle, z_context->sync_cycle, z_context->native_pc); z80_run(z_context); + //printf("Z80 ran to cycle %d\n", z_context->current_cycle); } } if (mclks >= MCLKS_PER_FRAME) { |