diff options
author | Michael Pavone <pavone@retrodev.com> | 2015-11-13 22:56:59 -0800 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2015-11-13 22:56:59 -0800 |
commit | 62fdcbc92ba3c4a71742293d75d853c95eb5f3c7 (patch) | |
tree | dce685f5cf74848f6d6a85f93689cf8dec50e89b /z80_to_x86.h | |
parent | 802454482c2843234a19a06f6acce360e0be3d60 (diff) |
Selecting a second game from the menu now works
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 51da4b0..b21cdbf 100644 --- a/z80_to_x86.h +++ b/z80_to_x86.h @@ -88,6 +88,7 @@ typedef struct { 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, memmap_chunk const * io_chunks, uint32_t num_io_chunks, uint32_t clock_divider); +void z80_options_free(z80_options *opts); 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); |