summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author Fabio Priuli <etabeta78@users.noreply.github.com>2014-10-08 03:55:03 +0000
committer Fabio Priuli <etabeta78@users.noreply.github.com>2014-10-08 03:55:03 +0000
commit03f8deff8afcf7470a319b3cd9042d3f3b6d6f17 (patch)
tree45ce0fba887045cf71c82a42526a33d4e13b9134 /src
parent1e1f628755fd5f0194164618728d37b42569a285 (diff)
(MESS) odyssey2: added a bunch of homebrew titles released on carts. nw.
(MESS) wswan: fixed emulation of a couple of titles, which regressed with the conversion to slot carts. nw.
Diffstat (limited to 'src')
-rw-r--r--src/emu/bus/wswan/rom.c12
-rw-r--r--src/emu/bus/wswan/rom.h2
2 files changed, 0 insertions, 14 deletions
diff --git a/src/emu/bus/wswan/rom.c b/src/emu/bus/wswan/rom.c
index 153d3c3da3c..4b27d7fe348 100644
--- a/src/emu/bus/wswan/rom.c
+++ b/src/emu/bus/wswan/rom.c
@@ -348,18 +348,6 @@ WRITE8_MEMBER(ws_rom_sram_device::write_io)
ws_rom_device::write_io(space, offset, data);
break;
}
-
- m_io_regs[offset] = data;
-}
-
-READ8_MEMBER(ws_rom_eeprom_device::read_ram)
-{
- return m_nvram[offset & (m_nvram.count() - 1)];
-}
-
-WRITE8_MEMBER(ws_rom_eeprom_device::write_ram)
-{
- m_nvram[offset & (m_nvram.count() - 1)] = data;
}
diff --git a/src/emu/bus/wswan/rom.h b/src/emu/bus/wswan/rom.h
index 18434257589..2ee51e35d43 100644
--- a/src/emu/bus/wswan/rom.h
+++ b/src/emu/bus/wswan/rom.h
@@ -81,8 +81,6 @@ public:
virtual void device_reset();
// reading and writing
- virtual DECLARE_READ8_MEMBER(read_ram);
- virtual DECLARE_WRITE8_MEMBER(write_ram);
virtual DECLARE_READ8_MEMBER(read_io);
virtual DECLARE_WRITE8_MEMBER(write_io);