diff z80_to_x86.c @ 670:f4f3e74b0ce6

Restore Z80 interrupt pulse duration and make a small improvement to debug print output
author Michael Pavone <pavone@retrodev.com>
date Sat, 03 Jan 2015 18:49:07 -0800
parents 5439ae7946ca
children 41a399c11ef1
line wrap: on
line diff
--- a/z80_to_x86.c	Sat Jan 03 18:27:29 2015 -0800
+++ b/z80_to_x86.c	Sat Jan 03 18:49:07 2015 -0800
@@ -2254,7 +2254,7 @@
 					context->int_cycle = CYCLE_NEVER;
 				}
 				context->target_cycle = context->sync_cycle < context->int_cycle ? context->sync_cycle : context->int_cycle;
-				dprintf("Running Z80 from cycle %d to cycle %d. Int cycle: %d\n", context->current_cycle, context->sync_cycle, context->int_cycle);
+				dprintf("Running Z80 from cycle %d to cycle %d. Int cycle: %d (%d - %d)\n", context->current_cycle, context->sync_cycle, context->int_cycle, context->int_pulse_start, context->int_pulse_end);
 				context->options->run(context);
 				dprintf("Z80 ran to cycle %d\n", context->current_cycle);
 			}