diff options
author | Mike Pavone <pavone@retrodev.com> | 2013-04-30 20:36:15 -0700 |
---|---|---|
committer | Mike Pavone <pavone@retrodev.com> | 2013-04-30 20:36:15 -0700 |
commit | fcd185e06e9e0f49b309cb77d7b3f03373142393 (patch) | |
tree | 71c6ed86d894376e2603e0a332082d6902d91b6a /z80_to_x86.h | |
parent | 716eb2e2a73a7b129168d0d642a82e8f694bd659 (diff) |
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.
Diffstat (limited to 'z80_to_x86.h')
-rw-r--r-- | z80_to_x86.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/z80_to_x86.h b/z80_to_x86.h index a00dbe9..f5e5a39 100644 --- a/z80_to_x86.h +++ b/z80_to_x86.h @@ -55,6 +55,7 @@ void translate_z80_stream(z80_context * context, uint32_t address); void init_x86_z80_opts(x86_z80_options * options); void init_z80_context(z80_context * context, x86_z80_options * options); uint8_t * z80_get_native_address(z80_context * context, uint32_t address); +z80_context * z80_handle_code_write(uint32_t address, z80_context * context); void z80_run(z80_context * context); void z80_reset(z80_context * context); |