summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/tandy1t.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/tandy1t.cpp')
-rw-r--r--src/mame/drivers/tandy1t.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/tandy1t.cpp b/src/mame/drivers/tandy1t.cpp
index e2e4d51fd4c..d9bf6c9bf88 100644
--- a/src/mame/drivers/tandy1t.cpp
+++ b/src/mame/drivers/tandy1t.cpp
@@ -112,7 +112,7 @@ public:
void machine_start() override;
- void machine_reset_tandy1000rl();
+ DECLARE_MACHINE_RESET(tandy1000rl);
struct
{
@@ -405,7 +405,7 @@ void tandy1000_state::tandy1000_set_bios_bank()
m_biosbank->set_bank( bank );
}
-void tandy1000_state::machine_reset_tandy1000rl()
+MACHINE_RESET_MEMBER(tandy1000_state, tandy1000rl)
{
m_tandy_bios_bank = 6;
tandy1000_set_bios_bank();
@@ -733,7 +733,7 @@ MACHINE_CONFIG_START(tandy1000_state::t1000rl)
MCFG_ADDRESS_MAP_BANK_ADDR_WIDTH(20)
MCFG_ADDRESS_MAP_BANK_STRIDE(0x10000)
- set_machine_reset_cb(config, driver_callback_delegate(&machine_reset_tandy1000rl, this));
+ MCFG_MACHINE_RESET_OVERRIDE(tandy1000_state,tandy1000rl)
MCFG_DEVICE_MODIFY(RAM_TAG)
MCFG_RAM_EXTRA_OPTIONS("384K")
MACHINE_CONFIG_END