summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/hunter2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/hunter2.cpp')
-rw-r--r--src/mame/drivers/hunter2.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/hunter2.cpp b/src/mame/drivers/hunter2.cpp
index 487609e84bf..5a2f7705306 100644
--- a/src/mame/drivers/hunter2.cpp
+++ b/src/mame/drivers/hunter2.cpp
@@ -63,7 +63,7 @@ public:
DECLARE_WRITE8_MEMBER(irqctrl_w);
DECLARE_WRITE8_MEMBER(memmap_w);
DECLARE_PALETTE_INIT(hunter2);
- DECLARE_DRIVER_INIT(hunter2);
+ void init_hunter2();
DECLARE_WRITE_LINE_MEMBER(timer0_out);
DECLARE_WRITE_LINE_MEMBER(timer1_out);
DECLARE_WRITE_LINE_MEMBER(cts_w);
@@ -332,7 +332,7 @@ void hunter2_state::machine_reset()
}
// it is presumed that writing to rom will go nowhere
-DRIVER_INIT_MEMBER( hunter2_state, hunter2 )
+void hunter2_state::init_hunter2()
{
uint8_t *ram = m_ram->base();
@@ -449,5 +449,5 @@ ROM_END
/* Driver */
-// YEAR NAME PARENT COMPAT MACHINE INPUT STATE INIT COMPANY FULLNAME FLAGS
-COMP( 1981, hunter2, 0, 0, hunter2, hunter2, hunter2_state, hunter2, "Husky", "Hunter 2", MACHINE_NOT_WORKING )
+// YEAR NAME PARENT COMPAT MACHINE INPUT CLASS INIT COMPANY FULLNAME FLAGS
+COMP( 1981, hunter2, 0, 0, hunter2, hunter2, hunter2_state, init_hunter2, "Husky", "Hunter 2", MACHINE_NOT_WORKING )