summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/clcd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/clcd.cpp')
-rw-r--r--src/mame/drivers/clcd.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/drivers/clcd.cpp b/src/mame/drivers/clcd.cpp
index 207da3b035e..682f4cfdb53 100644
--- a/src/mame/drivers/clcd.cpp
+++ b/src/mame/drivers/clcd.cpp
@@ -551,6 +551,7 @@ public:
void nvram_init(nvram_device &nvram, void *data, size_t size);
+ void clcd(machine_config &config);
private:
required_device<m65c02_device> m_maincpu;
required_device<mos6551_device> m_acia;
@@ -734,7 +735,7 @@ static INPUT_PORTS_START( clcd )
PORT_BIT( 0x80, IP_ACTIVE_HIGH, IPT_UNKNOWN ) // clears screen and goes into infinite loop
INPUT_PORTS_END
-static MACHINE_CONFIG_START(clcd)
+MACHINE_CONFIG_START(clcd_state::clcd)
/* basic machine hardware */
MCFG_CPU_ADD("maincpu", M65C02, 2000000)
MCFG_CPU_PROGRAM_MAP(clcd_mem)