diff z80_to_x86.h @ 1047:6b07af1515b5

Change cycle tracking code for Z80 core to only use a single register. Store low 7 bits of R in a reg and increment it appropriately.
author Michael Pavone <pavone@retrodev.com>
date Wed, 27 Jul 2016 22:46:22 -0700
parents 1eb616b8cbe9
children ef7ee9919a73
line wrap: on
line diff
--- a/z80_to_x86.h	Tue Jul 26 23:12:23 2016 -0700
+++ b/z80_to_x86.h	Wed Jul 27 22:46:22 2016 -0700
@@ -74,7 +74,7 @@
 	void *            system;
 	uint8_t           ram_code_flags[(8 * 1024)/128/8];
 	uint32_t          int_enable_cycle;
-  uint16_t          pc;
+	uint16_t          pc;
 	uint32_t          int_pulse_start;
 	uint32_t          int_pulse_end;
 	uint8_t           breakpoint_flags[(16 * 1024)/sizeof(uint8_t)];