comparison z80_to_x86.h @ 290:171f97e70d85

Implement writes from Z80 to YM-2612
author Mike Pavone <pavone@retrodev.com>
date Mon, 06 May 2013 00:54:58 -0700
parents 2989ed7b8608
children 14a937097c2b
comparison
equal deleted inserted replaced
289:1cc0850ab6bc 290:171f97e70d85
45 uint32_t sync_cycle; 45 uint32_t sync_cycle;
46 uint32_t int_cycle; 46 uint32_t int_cycle;
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 * next_context; 50 void * system;
51 uint8_t ram_code_flags[(8 * 1024)/128/8]; 51 uint8_t ram_code_flags[(8 * 1024)/128/8];
52 } z80_context; 52 } z80_context;
53 53
54 void translate_z80_stream(z80_context * context, uint32_t address); 54 void translate_z80_stream(z80_context * context, uint32_t address);
55 void init_x86_z80_opts(x86_z80_options * options); 55 void init_x86_z80_opts(x86_z80_options * options);