diff options
author | 2010-03-30 08:11:56 +0000 | |
---|---|---|
committer | 2010-03-30 08:11:56 +0000 | |
commit | 32066d6cd76f58959fdc36512c9831555c22a67a (patch) | |
tree | 43e64203643e62d471cdaa65554511b682e34162 /src/emu/cpu/superfx/superfx.h | |
parent | 957387880a1ad9e907c8e2e98848eee26c08e40f (diff) |
snes.c wip: fixed reserved memory address read not returning open_bus; fixed a few add-on chip reads not returning open_bus [Fabio Priuli]
side-note: CX4_read should return open_bus as well in a few cases, but passing an address_space to the handler would require more changes than are worth right now (especially because no game needs it). It will be taken care of when I convert all add-on chip handlers to become read/write handlers...
Diffstat (limited to 'src/emu/cpu/superfx/superfx.h')
-rw-r--r-- | src/emu/cpu/superfx/superfx.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/emu/cpu/superfx/superfx.h b/src/emu/cpu/superfx/superfx.h index b111e323b61..7ac58d5f3f6 100644 --- a/src/emu/cpu/superfx/superfx.h +++ b/src/emu/cpu/superfx/superfx.h @@ -99,5 +99,7 @@ extern offs_t superfx_dasm_one(char *buffer, offs_t pc, UINT8 op, UINT8 param0, UINT8 superfx_mmio_read(running_device *cpu, UINT32 addr); void superfx_mmio_write(running_device *cpu, UINT32 addr, UINT8 data); void superfx_add_clocks(running_device *cpu, INT32 clocks); +int superfx_access_ram(running_device *cpu); +int superfx_access_rom(running_device *cpu); #endif /* __SUPERFX_H__ */ |