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 a0bc2843ea4..5b9c986a5de 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)
}
-void hp48_state::machine_start_hp48s()
+MACHINE_START_MEMBER(hp48_state,hp48s)
{
base_machine_start(HP48_S);
}
-void hp48_state::machine_start_hp48sx()
+MACHINE_START_MEMBER(hp48_state,hp48sx)
{
base_machine_start(HP48_SX);
}
-void hp48_state::machine_start_hp48g()
+MACHINE_START_MEMBER(hp48_state,hp48g)
{
base_machine_start(HP48_G);
}
-void hp48_state::machine_start_hp48gx()
+MACHINE_START_MEMBER(hp48_state,hp48gx)
{
base_machine_start(HP48_GX);
}
-void hp48_state::machine_start_hp48gp()
+MACHINE_START_MEMBER(hp48_state,hp48gp)
{
base_machine_start(HP48_GP);
}
-void hp48_state::machine_start_hp49g()
+MACHINE_START_MEMBER(hp48_state,hp49g)
{
base_machine_start(HP49_G);
}