summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/vectrix.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/vectrix.cpp')
-rw-r--r--src/mame/drivers/vectrix.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/drivers/vectrix.cpp b/src/mame/drivers/vectrix.cpp
index 792e5696572..1dbe2971987 100644
--- a/src/mame/drivers/vectrix.cpp
+++ b/src/mame/drivers/vectrix.cpp
@@ -26,6 +26,7 @@ public:
// , m_maincpu(*this, "maincpu")
{ }
+void vectrix(machine_config &config);
private:
// required_device<cpu_device> m_maincpu;
};
@@ -44,7 +45,7 @@ ADDRESS_MAP_END
static INPUT_PORTS_START( vectrix )
INPUT_PORTS_END
-static MACHINE_CONFIG_START( vectrix )
+MACHINE_CONFIG_START(vectrix_state::vectrix)
MCFG_CPU_ADD("maincpu", I8088, XTAL_14_31818MHz/3) // no idea of clock
MCFG_CPU_PROGRAM_MAP(mem_map)
MCFG_CPU_IO_MAP(io_map)