comparison z80_to_x86.h @ 243:2f069a0b487e

Implement EI, DI and IM in the Z80 core
author Mike Pavone <pavone@retrodev.com>
date Sun, 28 Apr 2013 14:32:45 -0700
parents 2586d49ddd46
children df8a36bf5e1d
comparison
equal deleted inserted replaced
242:d3b84b2a4397 243:2f069a0b487e
33 uint8_t alt_regs[Z80_A+1]; 33 uint8_t alt_regs[Z80_A+1];
34 uint32_t target_cycle; 34 uint32_t target_cycle;
35 uint32_t current_cycle; 35 uint32_t current_cycle;
36 uint8_t alt_flags[ZF_NUM]; 36 uint8_t alt_flags[ZF_NUM];
37 uint8_t * mem_pointers[ZNUM_MEM_AREAS]; 37 uint8_t * mem_pointers[ZNUM_MEM_AREAS];
38 uint8_t iff1;
39 uint8_t iff2;
38 native_map_slot * static_code_map; 40 native_map_slot * static_code_map;
39 native_map_slot * banked_code_map; 41 native_map_slot * banked_code_map;
40 void * options; 42 void * options;
41 void * next_context; 43 void * next_context;
42 } z80_context; 44 } z80_context;