diff m68k_core.h @ 846:98d7b6073163

Implement interrupt latency. Fixes Sesame Street: Counting Cafe and gives accurate results in my test ROM
author Michael Pavone <pavone@retrodev.com>
date Sat, 31 Oct 2015 22:17:50 -0700
parents f2cd380adebe
children 7022ba865cfd
line wrap: on
line diff
--- a/m68k_core.h	Sat Oct 31 21:11:40 2015 -0700
+++ b/m68k_core.h	Sat Oct 31 22:17:50 2015 -0700
@@ -59,11 +59,11 @@
 	uint32_t        int_num;
 	uint16_t        *mem_pointers[NUM_MEM_AREAS];
 	void            *video_context;
-	uint16_t        reserved;
 
 	native_map_slot *native_code_map;
 	m68k_options    *options;
 	void            *system;
+	uint8_t         int_pending;
 	uint8_t         ram_code_flags[];
 } m68k_context;