summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/dvk_ksm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/dvk_ksm.cpp')
-rw-r--r--src/mame/drivers/dvk_ksm.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/drivers/dvk_ksm.cpp b/src/mame/drivers/dvk_ksm.cpp
index 803305b9491..be13554bf56 100644
--- a/src/mame/drivers/dvk_ksm.cpp
+++ b/src/mame/drivers/dvk_ksm.cpp
@@ -123,6 +123,7 @@ public:
DECLARE_WRITE8_MEMBER(ksm_ppi_porta_w);
DECLARE_WRITE8_MEMBER(ksm_ppi_portc_w);
+ void ksm(machine_config &config);
private:
uint32_t draw_scanline(uint16_t *p, uint16_t offset, uint8_t scanline);
rectangle m_tmpclip;
@@ -410,7 +411,7 @@ static GFXDECODE_START( ksm )
GFXDECODE_ENTRY("chargen", 0x0000, ksm_charlayout, 0, 1)
GFXDECODE_END
-static MACHINE_CONFIG_START( ksm )
+MACHINE_CONFIG_START(ksm_state::ksm)
MCFG_CPU_ADD("maincpu", I8080, XTAL_15_4MHz/10)
MCFG_CPU_PROGRAM_MAP(ksm_mem)
MCFG_CPU_IO_MAP(ksm_io)