summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/instantm.cpp
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2018-01-21 23:42:41 +0100
committer Olivier Galibert <galibert@pobox.com>2018-01-23 10:25:25 +0100
commit03ba80e0ef3e021f6ff89ef91ae5cdce4e24b994 (patch)
treef127b7f533d36df2484f82fcb05cef5f4c04f232 /src/mame/drivers/instantm.cpp
parentf61a64ea29bf46bf2deb2e1fbace5b24f3d7b0aa (diff)
xtal.h is dead, long live to xtal.cpp [O. Galibert]
Diffstat (limited to 'src/mame/drivers/instantm.cpp')
-rw-r--r--src/mame/drivers/instantm.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/instantm.cpp b/src/mame/drivers/instantm.cpp
index 75816441d17..703c80e26e6 100644
--- a/src/mame/drivers/instantm.cpp
+++ b/src/mame/drivers/instantm.cpp
@@ -116,14 +116,14 @@ void instantm_state::machine_reset()
m_clock_en = true;
}
-// OSC1 = XTAL_3_579545MHz
+// OSC1 = XTAL(3'579'545)
MACHINE_CONFIG_START(instantm_state::instantm)
/* basic machine hardware */
- MCFG_CPU_ADD("maincpu", Z80, XTAL_3_579545MHz)
+ MCFG_CPU_ADD("maincpu", Z80, XTAL(3'579'545))
MCFG_CPU_PROGRAM_MAP(main_map)
- MCFG_CPU_ADD("subcpu", Z80, XTAL_3_579545MHz)
+ MCFG_CPU_ADD("subcpu", Z80, XTAL(3'579'545))
MCFG_CPU_PROGRAM_MAP(sub_map)
MCFG_CPU_IO_MAP(sub_io)