summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/cfx9850.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/cfx9850.cpp')
-rw-r--r--src/mame/drivers/cfx9850.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/drivers/cfx9850.cpp b/src/mame/drivers/cfx9850.cpp
index f94172d285b..6d044ad4250 100644
--- a/src/mame/drivers/cfx9850.cpp
+++ b/src/mame/drivers/cfx9850.cpp
@@ -55,6 +55,7 @@ public:
DECLARE_PALETTE_INIT(cfx9850);
u32 screen_update_cfx9850(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ void cfx9850(machine_config &config);
protected:
required_ioport_array<12> m_ko_port;
required_device<cpu_device> m_maincpu;
@@ -279,7 +280,7 @@ u32 cfx9850_state::screen_update_cfx9850(screen_device &screen, bitmap_ind16 &bi
}
-static MACHINE_CONFIG_START(cfx9850)
+MACHINE_CONFIG_START(cfx9850_state::cfx9850)
MCFG_CPU_ADD("maincpu", HCD62121, 4300000) /* X1 - 4.3 MHz */
MCFG_CPU_PROGRAM_MAP(cfx9850)
MCFG_HCD62121_KOL_CB(WRITE8(cfx9850_state, kol_w))