diff options
author | Michael Pavone <pavone@retrodev.com> | 2014-12-17 23:03:19 -0800 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2014-12-17 23:03:19 -0800 |
commit | 4cad512b6d7ac0f7042b90e1029626fb14788bf0 (patch) | |
tree | 5d8d24324bee0ca18a6cfa12a92ef279719f24cf /z80_to_x86.h | |
parent | 9dc3feb135af0a8853798bd79cff754cd86dbd0f (diff) |
Get rest of emulator compiling again with Z80 core enabled
Diffstat (limited to 'z80_to_x86.h')
-rw-r--r-- | z80_to_x86.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/z80_to_x86.h b/z80_to_x86.h index fa9db33..d5d232c 100644 --- a/z80_to_x86.h +++ b/z80_to_x86.h @@ -67,7 +67,7 @@ typedef struct { } z80_context; void translate_z80_stream(z80_context * context, uint32_t address); -void init_x86_z80_opts(z80_options * options, memmap_chunk * chunks, uint32_t num_chunks); +void init_x86_z80_opts(z80_options * options, memmap_chunk const * chunks, uint32_t num_chunks); void init_z80_context(z80_context * context, z80_options * options); code_ptr z80_get_native_address(z80_context * context, uint32_t address); code_ptr z80_get_native_address_trans(z80_context * context, uint32_t address); @@ -76,6 +76,7 @@ void z80_run(z80_context * context); void z80_reset(z80_context * context); void zinsert_breakpoint(z80_context * context, uint16_t address, uint8_t * bp_handler); void zremove_breakpoint(z80_context * context, uint16_t address); +void * z80_gen_bank_write(uint32_t start_address, void * voptions); #endif //Z80_TO_X86_H_ |