summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/othello.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/othello.cpp')
-rw-r--r--src/mame/drivers/othello.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/othello.cpp b/src/mame/drivers/othello.cpp
index 371fb70ad09..cd275823915 100644
--- a/src/mame/drivers/othello.cpp
+++ b/src/mame/drivers/othello.cpp
@@ -393,16 +393,16 @@ void othello_state::machine_reset()
MACHINE_CONFIG_START(othello_state::othello)
/* basic machine hardware */
- MCFG_CPU_ADD("maincpu",Z80,XTAL_8MHz/2)
+ MCFG_CPU_ADD("maincpu",Z80,XTAL(8'000'000)/2)
MCFG_CPU_PROGRAM_MAP(main_map)
MCFG_CPU_IO_MAP(main_portmap)
MCFG_CPU_VBLANK_INT_DRIVER("screen", othello_state, irq0_line_hold)
- MCFG_CPU_ADD("audiocpu",Z80,XTAL_3_579545MHz)
+ MCFG_CPU_ADD("audiocpu",Z80,XTAL(3'579'545))
MCFG_CPU_PROGRAM_MAP(audio_map)
MCFG_CPU_IO_MAP(audio_portmap)
- MCFG_CPU_ADD("n7751", N7751, XTAL_6MHz)
+ MCFG_CPU_ADD("n7751", N7751, XTAL(6'000'000))
MCFG_MCS48_PORT_T1_IN_CB(GND) // labelled as "TEST", connected to ground
MCFG_MCS48_PORT_P2_IN_CB(READ8(othello_state, n7751_command_r))
MCFG_MCS48_PORT_BUS_IN_CB(READ8(othello_state, n7751_rom_r))