summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/nsg6809.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/nsg6809.cpp')
-rw-r--r--src/mame/drivers/nsg6809.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/drivers/nsg6809.cpp b/src/mame/drivers/nsg6809.cpp
index 722e3c9e902..3c449d793df 100644
--- a/src/mame/drivers/nsg6809.cpp
+++ b/src/mame/drivers/nsg6809.cpp
@@ -49,6 +49,7 @@ public:
m_maincpu(*this, "maincpu") {}
required_device<cpu_device> m_maincpu;
+ void pitchhit(machine_config &config);
};
@@ -63,7 +64,7 @@ ADDRESS_MAP_END
static INPUT_PORTS_START( pitchhit )
INPUT_PORTS_END
-static MACHINE_CONFIG_START( pitchhit )
+MACHINE_CONFIG_START(nsg6809_state::pitchhit)
MCFG_CPU_ADD("maincpu", MC6809, XTAL_4MHz) // clock buffered through 74HC4060
MCFG_CPU_PROGRAM_MAP(main_map)