summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/galgame.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/galgame.cpp')
-rw-r--r--src/mame/drivers/galgame.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/drivers/galgame.cpp b/src/mame/drivers/galgame.cpp
index 8e71c8b0589..21c91b9618f 100644
--- a/src/mame/drivers/galgame.cpp
+++ b/src/mame/drivers/galgame.cpp
@@ -56,6 +56,7 @@ public:
IRQ_CALLBACK_MEMBER(galaxygame_irq_callback);
required_device<cpu_device> m_maincpu;
required_device<palette_device> m_palette;
+ void galaxygame(machine_config &config);
};
/*************************************
@@ -318,7 +319,7 @@ void galaxygame_state::machine_reset()
m_interrupt = 0;
}
-static MACHINE_CONFIG_START( galaxygame )
+MACHINE_CONFIG_START(galaxygame_state::galaxygame)
MCFG_CPU_ADD("maincpu", T11, 3000000 )
MCFG_CPU_PROGRAM_MAP(galaxygame_map)