summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/battlnts.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/battlnts.cpp')
-rw-r--r--src/mame/drivers/battlnts.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/battlnts.cpp b/src/mame/drivers/battlnts.cpp
index 7e63ff4e74d..eb458792b63 100644
--- a/src/mame/drivers/battlnts.cpp
+++ b/src/mame/drivers/battlnts.cpp
@@ -232,11 +232,11 @@ void battlnts_state::machine_reset()
MACHINE_CONFIG_START(battlnts_state::battlnts)
/* basic machine hardware */
- MCFG_CPU_ADD("maincpu", HD6309, XTAL_24MHz / 2 /* 3000000*4? */)
+ MCFG_CPU_ADD("maincpu", HD6309, XTAL(24'000'000) / 2 /* 3000000*4? */)
MCFG_CPU_PROGRAM_MAP(battlnts_map)
MCFG_CPU_VBLANK_INT_DRIVER("screen", battlnts_state, battlnts_interrupt)
- MCFG_CPU_ADD("audiocpu", Z80, XTAL_24MHz / 6 /* 3579545? */)
+ MCFG_CPU_ADD("audiocpu", Z80, XTAL(24'000'000) / 6 /* 3579545? */)
MCFG_CPU_PROGRAM_MAP(battlnts_sound_map)
MCFG_WATCHDOG_ADD("watchdog")
@@ -269,10 +269,10 @@ MACHINE_CONFIG_START(battlnts_state::battlnts)
MCFG_GENERIC_LATCH_8_ADD("soundlatch")
- MCFG_SOUND_ADD("ym1", YM3812, XTAL_24MHz / 8)
+ MCFG_SOUND_ADD("ym1", YM3812, XTAL(24'000'000) / 8)
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.0)
- MCFG_SOUND_ADD("ym2", YM3812, XTAL_24MHz / 8)
+ MCFG_SOUND_ADD("ym2", YM3812, XTAL(24'000'000) / 8)
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.0)
MACHINE_CONFIG_END