summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/tonton.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/tonton.c')
-rw-r--r--src/mame/drivers/tonton.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/tonton.c b/src/mame/drivers/tonton.c
index c56603754d8..b7d199b4760 100644
--- a/src/mame/drivers/tonton.c
+++ b/src/mame/drivers/tonton.c
@@ -41,6 +41,8 @@ public:
DECLARE_WRITE8_MEMBER(tonton_outport_w);
DECLARE_WRITE8_MEMBER(ay_aout_w);
DECLARE_WRITE8_MEMBER(ay_bout_w);
+ virtual void machine_start();
+ virtual void machine_reset();
};
#define MAIN_CLOCK XTAL_21_4772MHz
@@ -187,11 +189,11 @@ INPUT_PORTS_END
* Machine Start & Reset Routines *
*************************************************/
-static MACHINE_START( tonton )
+void tonton_state::machine_start()
{
}
-static MACHINE_RESET( tonton )
+void tonton_state::machine_reset()
{
}
@@ -257,8 +259,6 @@ static MACHINE_CONFIG_START( tonton, tonton_state )
MCFG_NVRAM_ADD_0FILL("nvram")
- MCFG_MACHINE_START(tonton)
- MCFG_MACHINE_RESET(tonton)
/* video hardware */
MCFG_VIDEO_ATTRIBUTES(VIDEO_UPDATE_BEFORE_VBLANK)