summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/wpc_95.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/wpc_95.cpp')
-rw-r--r--src/mame/drivers/wpc_95.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/wpc_95.cpp b/src/mame/drivers/wpc_95.cpp
index 7e78b1eb79c..5c1e3b4d98e 100644
--- a/src/mame/drivers/wpc_95.cpp
+++ b/src/mame/drivers/wpc_95.cpp
@@ -2247,9 +2247,9 @@ INPUT_PORTS_END
MACHINE_CONFIG_START(wpc_95_state::wpc_95)
/* basic machine hardware */
- MCFG_CPU_ADD("maincpu", MC6809E, XTAL_8MHz/4) // 68B09E
+ MCFG_CPU_ADD("maincpu", MC6809E, XTAL(8'000'000)/4) // 68B09E
MCFG_CPU_PROGRAM_MAP(wpc_95_map)
- MCFG_CPU_PERIODIC_INT_DRIVER(wpc_95_state, irq0_line_assert, XTAL_8MHz/8192.0)
+ MCFG_CPU_PERIODIC_INT_DRIVER(wpc_95_state, irq0_line_assert, XTAL(8'000'000)/8192.0)
MCFG_TIMER_DRIVER_ADD_PERIODIC("zero_crossing", wpc_95_state, zc_timer, attotime::from_hz(120)) // Mains power zero crossing
MCFG_WPC_PIC_ADD("pic")