comparison z80_to_x86.h @ 451:b7c3b2d22858

Added support for saving savestates. Added gst savestate format test harness
author Mike Pavone <pavone@retrodev.com>
date Fri, 26 Jul 2013 19:55:04 -0700
parents 7e8e179116af
children 140af5509ce7
comparison
equal deleted inserted replaced
448:e85a107e6ec0 451:b7c3b2d22858
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 uint32_t int_enable_cycle;
53 uint16_t pc;
53 } z80_context; 54 } z80_context;
54 55
55 void translate_z80_stream(z80_context * context, uint32_t address); 56 void translate_z80_stream(z80_context * context, uint32_t address);
56 void init_x86_z80_opts(x86_z80_options * options); 57 void init_x86_z80_opts(x86_z80_options * options);
57 void init_z80_context(z80_context * context, x86_z80_options * options); 58 void init_z80_context(z80_context * context, x86_z80_options * options);