summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/cop01.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/cop01.cpp')
-rw-r--r--src/mame/drivers/cop01.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/cop01.cpp b/src/mame/drivers/cop01.cpp
index 90f4d546e82..132a5a58c14 100644
--- a/src/mame/drivers/cop01.cpp
+++ b/src/mame/drivers/cop01.cpp
@@ -66,8 +66,8 @@ Mighty Guy board layout:
#define MIGHTGUY_HACK 0
#define TIMER_RATE 11475 /* unknown, hand-tuned to match audio reference */
-#define MAINCPU_CLOCK XTAL_12MHz
-#define AUDIOCPU_CLOCK XTAL_8MHz
+#define MAINCPU_CLOCK XTAL(12'000'000)
+#define AUDIOCPU_CLOCK XTAL(8'000'000)
/*************************************
*
@@ -517,7 +517,7 @@ MACHINE_CONFIG_START(cop01_state::cop01)
MCFG_CPU_IO_MAP(io_map)
MCFG_CPU_VBLANK_INT_DRIVER("screen", cop01_state, irq0_line_assert)
- MCFG_CPU_ADD("audiocpu", Z80, XTAL_3MHz) /* unknown clock / divider, hand-tuned to match audio reference */
+ MCFG_CPU_ADD("audiocpu", Z80, XTAL(3'000'000)) /* unknown clock / divider, hand-tuned to match audio reference */
MCFG_CPU_PROGRAM_MAP(sound_map)
MCFG_CPU_IO_MAP(audio_io_map)