diff options
author | Michael Pavone <pavone@retrodev.com> | 2017-01-04 20:43:22 -0800 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2017-01-04 20:43:22 -0800 |
commit | e96ca2a17dc298977d31768226090bc22b0baa5c (patch) | |
tree | 7a81bcdb53c31e95da82637ed313015c5f94cd16 /backend.h | |
parent | 7efc7891c5d5c9bc1daf954510f90e79b6db5c75 (diff) |
Don't lock up CPU if performing a read with writes configured when in PBC mode. Allow access to VDP debug commands from Z80 debugger in PBC mode. Handle Mode 4 in VDP debug print functions
Diffstat (limited to 'backend.h')
-rw-r--r-- | backend.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -76,6 +76,8 @@ typedef struct { write_8_fun write_8; } memmap_chunk; +#include "system.h" + typedef struct { uint32_t flags; native_map_slot *native_code_map; @@ -90,6 +92,7 @@ typedef struct { code_ptr handle_code_write; code_ptr handle_align_error_write; code_ptr handle_align_error_read; + system_str_fun_r8 debug_cmd_handler; uint32_t memmap_chunks; uint32_t address_mask; uint32_t max_address; |