summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/sbowling.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/sbowling.cpp')
-rw-r--r--src/mame/drivers/sbowling.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/sbowling.cpp b/src/mame/drivers/sbowling.cpp
index 5c31883e29b..c7ad40f32d6 100644
--- a/src/mame/drivers/sbowling.cpp
+++ b/src/mame/drivers/sbowling.cpp
@@ -404,7 +404,7 @@ PALETTE_INIT_MEMBER(sbowling_state, sbowling)
}
MACHINE_CONFIG_START(sbowling_state::sbowling)
- MCFG_CPU_ADD("maincpu", I8080, XTAL_19_968MHz/10) /* ? */
+ MCFG_CPU_ADD("maincpu", I8080, XTAL(19'968'000)/10) /* ? */
MCFG_CPU_PROGRAM_MAP(main_map)
MCFG_CPU_IO_MAP(port_map)
MCFG_TIMER_DRIVER_ADD_SCANLINE("scantimer", sbowling_state, interrupt, "screen", 0, 1)
@@ -427,7 +427,7 @@ MACHINE_CONFIG_START(sbowling_state::sbowling)
/* sound hardware */
MCFG_SPEAKER_STANDARD_MONO("mono")
- MCFG_SOUND_ADD("aysnd", AY8910, XTAL_19_968MHz/16) /* ? */
+ MCFG_SOUND_ADD("aysnd", AY8910, XTAL(19'968'000)/16) /* ? */
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.33)
MACHINE_CONFIG_END