summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/m57.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/m57.cpp
parentf61a64ea29bf46bf2deb2e1fbace5b24f3d7b0aa (diff)
xtal.h is dead, long live to xtal.cpp [O. Galibert]
Diffstat (limited to 'src/mame/drivers/m57.cpp')
-rw-r--r--src/mame/drivers/m57.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/m57.cpp b/src/mame/drivers/m57.cpp
index caee476fd0e..b0b1a66a4ec 100644
--- a/src/mame/drivers/m57.cpp
+++ b/src/mame/drivers/m57.cpp
@@ -59,7 +59,7 @@
#include "screen.h"
-#define MASTER_CLOCK XTAL_18_432MHz
+#define MASTER_CLOCK XTAL(18'432'000)
@@ -231,7 +231,7 @@ GFXDECODE_END
MACHINE_CONFIG_START(m57_state::m57)
/* basic machine hardware */
- MCFG_CPU_ADD("maincpu", Z80, XTAL_18_432MHz/6) /* verified on pcb */
+ MCFG_CPU_ADD("maincpu", Z80, XTAL(18'432'000)/6) /* verified on pcb */
MCFG_CPU_PROGRAM_MAP(main_map)
MCFG_CPU_VBLANK_INT_DRIVER("screen", m57_state, irq0_line_hold)