diff options
author | Michael Pavone <pavone@retrodev.com> | 2016-04-18 19:26:47 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2016-04-18 19:26:47 -0700 |
commit | 112c7326f0a2ba30625e1fb38952d638edfea161 (patch) | |
tree | 223e1d13449314ed53b1c2a0207ea246be5e3da2 /stateview.c | |
parent | 4e282f87d2f2ee80e7d136ab6d335227a438caa1 (diff) |
Fixed loading save states from menu
Diffstat (limited to 'stateview.c')
-rw-r--r-- | stateview.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/stateview.c b/stateview.c index 46a9016..f7a21fd 100644 --- a/stateview.c +++ b/stateview.c @@ -16,7 +16,6 @@ io_port gamepad_2; uint8_t reset = 1; uint8_t busreq = 0; -uint16_t *ram; uint8_t z80_ram[Z80_RAM_BYTES]; uint16_t read_dma_value(uint32_t address) @@ -24,6 +23,16 @@ uint16_t read_dma_value(uint32_t address) return 0; } +m68k_context *m68k_handle_code_write(uint32_t address, m68k_context *context) +{ + return NULL; +} + +z80_context *z80_handle_code_write(uint32_t address, z80_context *context) +{ + return NULL; +} + void ym_data_write(ym2612_context * context, uint8_t value) { } |