summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2020-08-03 22:00:54 +0200
committer hap <happppp@users.noreply.github.com>2020-08-03 22:01:12 +0200
commit5b8676cbf19119bafabacd7c1cfa65eb829d6aa3 (patch)
tree6c86662a1657f6b87986acfc179ced0d4352cef5 /src/devices/bus
parent93110b8cc46ef5f5603c5760041ae2ca4b8f2da6 (diff)
odyssey2: mcs48 already takes care of reset
Diffstat (limited to 'src/devices/bus')
-rw-r--r--src/devices/bus/odyssey2/rom.cpp4
-rw-r--r--src/devices/bus/odyssey2/rom.h1
2 files changed, 0 insertions, 5 deletions
diff --git a/src/devices/bus/odyssey2/rom.cpp b/src/devices/bus/odyssey2/rom.cpp
index c09969540db..e8bca5ece92 100644
--- a/src/devices/bus/odyssey2/rom.cpp
+++ b/src/devices/bus/odyssey2/rom.cpp
@@ -54,10 +54,6 @@ void o2_rom_device::device_start()
save_item(NAME(m_bank_base));
}
-void o2_rom_device::device_reset()
-{
- m_bank_base = 0;
-}
/*-------------------------------------------------
mapper specific handlers
diff --git a/src/devices/bus/odyssey2/rom.h b/src/devices/bus/odyssey2/rom.h
index 356b8d39b59..139e88393a0 100644
--- a/src/devices/bus/odyssey2/rom.h
+++ b/src/devices/bus/odyssey2/rom.h
@@ -28,7 +28,6 @@ protected:
// device-level overrides
virtual void device_start() override;
- virtual void device_reset() override;
int m_bank_base;
};