summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/unkhorse.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/unkhorse.cpp')
-rw-r--r--src/mame/drivers/unkhorse.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/drivers/unkhorse.cpp b/src/mame/drivers/unkhorse.cpp
index 596f86f2418..57256824ad0 100644
--- a/src/mame/drivers/unkhorse.cpp
+++ b/src/mame/drivers/unkhorse.cpp
@@ -54,6 +54,7 @@ public:
virtual void machine_start() override;
uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
INTERRUPT_GEN_MEMBER(interrupt);
+ void horse(machine_config &config);
};
void horse_state::machine_start()
@@ -191,7 +192,7 @@ INTERRUPT_GEN_MEMBER(horse_state::interrupt)
device.execute().set_input_line(I8085_RST75_LINE, CLEAR_LINE);
}
-static MACHINE_CONFIG_START( horse )
+MACHINE_CONFIG_START(horse_state::horse)
/* basic machine hardware */
MCFG_CPU_ADD("maincpu", I8085A, XTAL_12MHz / 2)