summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/trs80.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/trs80.cpp')
-rw-r--r--src/mame/machine/trs80.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/machine/trs80.cpp b/src/mame/machine/trs80.cpp
index c7cdbe5747b..331f20f592e 100644
--- a/src/mame/machine/trs80.cpp
+++ b/src/mame/machine/trs80.cpp
@@ -790,7 +790,7 @@ void trs80_state::machine_reset()
m_cassette_data = 0;
}
-void trs80_state::machine_reset_trs80m4()
+MACHINE_RESET_MEMBER(trs80_state,trs80m4)
{
address_space &mem = m_maincpu->space(AS_PROGRAM);
m_cassette_data = 0;
@@ -836,7 +836,7 @@ void trs80_state::machine_reset_trs80m4()
trs80m4_84_w(mem, 0, 0); /* switch in devices at power-on */
}
-void trs80_state::machine_reset_lnw80()
+MACHINE_RESET_MEMBER(trs80_state,lnw80)
{
address_space &space = m_maincpu->space(AS_PROGRAM);
m_cassette_data = 0;
@@ -844,10 +844,10 @@ void trs80_state::machine_reset_lnw80()
lnw80_fe_w(space, 0, 0);
}
-void trs80_state::machine_reset_cp500()
+MACHINE_RESET_MEMBER(trs80_state,cp500)
{
m_a11_flipflop = 0;
- machine_reset_trs80m4();
+ MACHINE_RESET_CALL_MEMBER( trs80m4 );
}