summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/citycon.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/citycon.cpp')
-rw-r--r--src/mame/drivers/citycon.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/citycon.cpp b/src/mame/drivers/citycon.cpp
index a3a4700b64a..a7d5fe3ebc9 100644
--- a/src/mame/drivers/citycon.cpp
+++ b/src/mame/drivers/citycon.cpp
@@ -189,11 +189,11 @@ void citycon_state::machine_reset()
MACHINE_CONFIG_START(citycon_state::citycon)
/* basic machine hardware */
- MCFG_CPU_ADD("maincpu", MC6809, XTAL_8MHz) // HD68B09P
+ MCFG_CPU_ADD("maincpu", MC6809, XTAL(8'000'000)) // HD68B09P
MCFG_CPU_PROGRAM_MAP(citycon_map)
MCFG_CPU_VBLANK_INT_DRIVER("screen", citycon_state, irq0_line_assert)
- MCFG_CPU_ADD("audiocpu", MC6809E, XTAL_20MHz / 32) // schematics allow for either a 6809 or 6809E; HD68A09EP found on one actual PCB
+ MCFG_CPU_ADD("audiocpu", MC6809E, XTAL(20'000'000) / 32) // schematics allow for either a 6809 or 6809E; HD68A09EP found on one actual PCB
MCFG_CPU_PROGRAM_MAP(sound_map)
MCFG_CPU_VBLANK_INT_DRIVER("screen", citycon_state, irq0_line_hold) //actually unused, probably it was during development
@@ -216,10 +216,10 @@ MACHINE_CONFIG_START(citycon_state::citycon)
MCFG_GENERIC_LATCH_8_ADD("soundlatch")
MCFG_GENERIC_LATCH_8_ADD("soundlatch2")
- MCFG_SOUND_ADD("aysnd", AY8910, XTAL_20MHz / 16) // schematics consistently specify AY-3-8910, though YM2149 found on one actual PCB
+ MCFG_SOUND_ADD("aysnd", AY8910, XTAL(20'000'000) / 16) // schematics consistently specify AY-3-8910, though YM2149 found on one actual PCB
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.40)
- MCFG_SOUND_ADD("ymsnd", YM2203, XTAL_20MHz / 16)
+ MCFG_SOUND_ADD("ymsnd", YM2203, XTAL(20'000'000) / 16)
MCFG_AY8910_PORT_A_READ_CB(DEVREAD8("soundlatch", generic_latch_8_device, read))
MCFG_AY8910_PORT_B_READ_CB(DEVREAD8("soundlatch2", generic_latch_8_device, read))
MCFG_SOUND_ROUTE(0, "mono", 0.40)