comparison z80_to_x86.h @ 335:14a937097c2b

Some Z80 interrupt fixes
author Mike Pavone <pavone@retrodev.com>
date Tue, 14 May 2013 21:59:56 -0700
parents 171f97e70d85
children 836585d389b8
comparison
equal deleted inserted replaced
334:4c91470e1a53 335:14a937097c2b
47 native_map_slot * static_code_map; 47 native_map_slot * static_code_map;
48 native_map_slot * banked_code_map; 48 native_map_slot * banked_code_map;
49 void * options; 49 void * options;
50 void * system; 50 void * system;
51 uint8_t ram_code_flags[(8 * 1024)/128/8]; 51 uint8_t ram_code_flags[(8 * 1024)/128/8];
52 uint32_t int_enable_cycle;
52 } z80_context; 53 } z80_context;
53 54
54 void translate_z80_stream(z80_context * context, uint32_t address); 55 void translate_z80_stream(z80_context * context, uint32_t address);
55 void init_x86_z80_opts(x86_z80_options * options); 56 void init_x86_z80_opts(x86_z80_options * options);
56 void init_z80_context(z80_context * context, x86_z80_options * options); 57 void init_z80_context(z80_context * context, x86_z80_options * options);