diff options
author | Michael Pavone <pavone@retrodev.com> | 2015-07-29 00:03:36 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2015-07-29 00:03:36 -0700 |
commit | 7f3358e31c30e519a45258917fc419e57b4ca422 (patch) | |
tree | 1aab73cdc491d9c1418aa6295ba6281c815fb8c3 /z80_to_x86.h | |
parent | bb8d28d9fbb19dc79247f82af1c2fc42ff13e691 (diff) |
Added support for an IO memory map in Z80 core
Diffstat (limited to 'z80_to_x86.h')
-rw-r--r-- | z80_to_x86.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/z80_to_x86.h b/z80_to_x86.h index a940bb7..51da4b0 100644 --- a/z80_to_x86.h +++ b/z80_to_x86.h @@ -87,7 +87,7 @@ typedef struct { } z80_context; void translate_z80_stream(z80_context * context, uint32_t address); -void init_z80_opts(z80_options * options, memmap_chunk const * chunks, uint32_t num_chunks, uint32_t clock_divider); +void init_z80_opts(z80_options * options, memmap_chunk const * chunks, uint32_t num_chunks, memmap_chunk const * io_chunks, uint32_t num_io_chunks, uint32_t clock_divider); 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); |