summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/hp48.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/hp48.cpp')
-rw-r--r--src/mame/machine/hp48.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/machine/hp48.cpp b/src/mame/machine/hp48.cpp
index 5b9c986a5de..a0bc2843ea4 100644
--- a/src/mame/machine/hp48.cpp
+++ b/src/mame/machine/hp48.cpp
@@ -1031,32 +1031,32 @@ void hp48_state::base_machine_start(hp48_models model)
}
-MACHINE_START_MEMBER(hp48_state,hp48s)
+void hp48_state::machine_start_hp48s()
{
base_machine_start(HP48_S);
}
-MACHINE_START_MEMBER(hp48_state,hp48sx)
+void hp48_state::machine_start_hp48sx()
{
base_machine_start(HP48_SX);
}
-MACHINE_START_MEMBER(hp48_state,hp48g)
+void hp48_state::machine_start_hp48g()
{
base_machine_start(HP48_G);
}
-MACHINE_START_MEMBER(hp48_state,hp48gx)
+void hp48_state::machine_start_hp48gx()
{
base_machine_start(HP48_GX);
}
-MACHINE_START_MEMBER(hp48_state,hp48gp)
+void hp48_state::machine_start_hp48gp()
{
base_machine_start(HP48_GP);
}
-MACHINE_START_MEMBER(hp48_state,hp49g)
+void hp48_state::machine_start_hp49g()
{
base_machine_start(HP49_G);
}