summaryrefslogtreecommitdiff
path: root/z80_to_x86.h
diff options
context:
space:
mode:
authorMike Pavone <pavone@retrodev.com>2013-04-28 14:32:45 -0700
committerMike Pavone <pavone@retrodev.com>2013-04-28 14:32:45 -0700
commitcc0f4563e52f42b7653544e77e9e9b0f03426ea8 (patch)
tree16cfee817eeeb19f92a381b421566e268cb3f9af /z80_to_x86.h
parent51b6eb32ced5acdd28d2a4d8d0e7d2209d0bea4f (diff)
Implement EI, DI and IM in the Z80 core
Diffstat (limited to 'z80_to_x86.h')
-rw-r--r--z80_to_x86.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/z80_to_x86.h b/z80_to_x86.h
index 673cb23..453f580 100644
--- a/z80_to_x86.h
+++ b/z80_to_x86.h
@@ -35,6 +35,8 @@ typedef struct {
uint32_t current_cycle;
uint8_t alt_flags[ZF_NUM];
uint8_t * mem_pointers[ZNUM_MEM_AREAS];
+ uint8_t iff1;
+ uint8_t iff2;
native_map_slot * static_code_map;
native_map_slot * banked_code_map;
void * options;