summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/hp700.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/hp700.cpp')
-rw-r--r--src/mame/drivers/hp700.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/drivers/hp700.cpp b/src/mame/drivers/hp700.cpp
index 942b641ed8f..857b5554d22 100644
--- a/src/mame/drivers/hp700.cpp
+++ b/src/mame/drivers/hp700.cpp
@@ -19,6 +19,7 @@ public:
, m_maincpu(*this, "maincpu")
{ }
+ void hp700_92(machine_config &config);
private:
required_device<cpu_device> m_maincpu;
};
@@ -39,7 +40,7 @@ ADDRESS_MAP_END
static INPUT_PORTS_START( hp700_92 )
INPUT_PORTS_END
-static MACHINE_CONFIG_START( hp700_92 )
+MACHINE_CONFIG_START(hp700_state::hp700_92)
MCFG_CPU_ADD("maincpu", V20, XTAL_29_4912MHz / 3) // divider not verified
MCFG_CPU_PROGRAM_MAP(mem_map)
MCFG_CPU_IO_MAP(io_map)