summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/wpc_dcs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/wpc_dcs.cpp')
-rw-r--r--src/mame/drivers/wpc_dcs.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/wpc_dcs.cpp b/src/mame/drivers/wpc_dcs.cpp
index 48ce3ecfb11..fd00b0e3d38 100644
--- a/src/mame/drivers/wpc_dcs.cpp
+++ b/src/mame/drivers/wpc_dcs.cpp
@@ -423,10 +423,10 @@ INPUT_PORTS_END
MACHINE_CONFIG_START(wpc_dcs_state::wpc_dcs)
/* basic machine hardware */
- MCFG_CPU_ADD("maincpu", M6809, XTAL_8MHz/4)
+ MCFG_CPU_ADD("maincpu", M6809, XTAL(8'000'000)/4)
MCFG_CPU_PROGRAM_MAP(wpc_dcs_map)
- MCFG_CPU_PERIODIC_INT_DRIVER(wpc_dcs_state, irq0_line_assert, XTAL_8MHz/8192.0)
+ MCFG_CPU_PERIODIC_INT_DRIVER(wpc_dcs_state, irq0_line_assert, XTAL(8'000'000)/8192.0)
MCFG_TIMER_DRIVER_ADD_PERIODIC("zero_crossing", wpc_dcs_state, zc_timer, attotime::from_hz(120)) // Mains power zero crossing
MCFG_WPC_LAMP_ADD("lamp")