diff options
author | Michael Pavone <pavone@retrodev.com> | 2019-02-12 09:58:04 -0800 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2019-02-12 09:58:04 -0800 |
commit | 84198d4ef6e5f311945ec6f6a8956426a52795af (patch) | |
tree | 7d14ca50af2f7e7404d6846e4bd6e334c7a133fc /backend.h | |
parent | 1b23425efd7606bf6cd509861d9b2d60e033e962 (diff) |
Integration of new Z80 core is sort of working now
Diffstat (limited to 'backend.h')
-rw-r--r-- | backend.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -95,6 +95,7 @@ void patch_for_retranslate(cpu_options *opts, code_ptr native_address, code_ptr code_ptr gen_mem_fun(cpu_options * opts, memmap_chunk const * memmap, uint32_t num_chunks, ftype fun_type, code_ptr *after_inc); void * get_native_pointer(uint32_t address, void ** mem_pointers, cpu_options * opts); +void * get_native_write_pointer(uint32_t address, void ** mem_pointers, cpu_options * opts); uint16_t read_word(uint32_t address, void **mem_pointers, cpu_options *opts, void *context); uint8_t read_byte(uint32_t address, void **mem_pointers, cpu_options *opts, void *context); void write_byte(uint32_t address, uint8_t value, void **mem_pointers, cpu_options *opts, void *context); |