comparison z80_to_x86.h @ 263:2989ed7b8608

Add a second context pointer to m68k_context so that try_fifo_write can still have easy access to the VDP. Handle writes to Z80 code addresses from the 68K.
author Mike Pavone <pavone@retrodev.com>
date Tue, 30 Apr 2013 20:36:15 -0700
parents 63b9a500a00b
children 171f97e70d85
comparison
equal deleted inserted replaced
262:d97c9eca49f4 263:2989ed7b8608
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);
56 void init_z80_context(z80_context * context, x86_z80_options * options); 56 void init_z80_context(z80_context * context, x86_z80_options * options);
57 uint8_t * z80_get_native_address(z80_context * context, uint32_t address); 57 uint8_t * z80_get_native_address(z80_context * context, uint32_t address);
58 z80_context * z80_handle_code_write(uint32_t address, z80_context * context);
58 void z80_run(z80_context * context); 59 void z80_run(z80_context * context);
59 void z80_reset(z80_context * context); 60 void z80_reset(z80_context * context);
60 61
61 #endif //Z80_TO_X86_H_ 62 #endif //Z80_TO_X86_H_
62 63