summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/leland.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/leland.cpp')
-rw-r--r--src/mame/machine/leland.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/machine/leland.cpp b/src/mame/machine/leland.cpp
index 628bc3883eb..05a33177fa0 100644
--- a/src/mame/machine/leland.cpp
+++ b/src/mame/machine/leland.cpp
@@ -315,7 +315,7 @@ WRITE8_MEMBER(leland_state::indyheat_analog_w)
*
*************************************/
-void leland_state::machine_start_leland()
+MACHINE_START_MEMBER(leland_state,leland)
{
/* allocate extra stuff */
m_battery_ram = reinterpret_cast<uint8_t *>(memshare("battery")->ptr());
@@ -340,7 +340,7 @@ void leland_state::machine_start_leland()
}
-void leland_state::machine_reset_leland()
+MACHINE_RESET_MEMBER(leland_state,leland)
{
m_master_int_timer->adjust(m_screen->time_until_pos(8), 8);
@@ -379,7 +379,7 @@ void leland_state::machine_reset_leland()
}
-void leland_state::machine_start_ataxx()
+MACHINE_START_MEMBER(leland_state,ataxx)
{
/* set the odd data banks */
m_battery_ram = reinterpret_cast<uint8_t *>(memshare("battery")->ptr());
@@ -399,7 +399,7 @@ void leland_state::machine_start_ataxx()
}
-void leland_state::machine_reset_ataxx()
+MACHINE_RESET_MEMBER(leland_state,ataxx)
{
memset(m_extra_tram.get(), 0, ATAXX_EXTRA_TRAM_SIZE);
m_master_int_timer->adjust(m_screen->time_until_pos(8), 8);