summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/nibble.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/nibble.cpp')
-rw-r--r--src/mame/drivers/nibble.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/drivers/nibble.cpp b/src/mame/drivers/nibble.cpp
index 41e00f71e88..37d0fd958df 100644
--- a/src/mame/drivers/nibble.cpp
+++ b/src/mame/drivers/nibble.cpp
@@ -79,6 +79,7 @@ public:
INTERRUPT_GEN_MEMBER(nibble_interrupt);
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
+ void nibble(machine_config &config);
};
@@ -301,7 +302,7 @@ GFXDECODE_END
* Machine Drivers *
*************************/
-static MACHINE_CONFIG_START( nibble )
+MACHINE_CONFIG_START(nibble_state::nibble)
MCFG_TMS99xx_ADD("maincpu", TMS9900, MASTER_CLOCK/4, nibble_map, nibble_cru_map)
MCFG_CPU_VBLANK_INT_DRIVER("screen", nibble_state, nibble_interrupt)