summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/gcpinbal.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2018-01-25 04:39:52 +1100
committer Vas Crabb <vas@vastheman.com>2018-01-25 04:39:52 +1100
commitbefdb4d62ba0c377dc0096fd48db6b8fe5887bf7 (patch)
tree3a7dcc1929ce1c3cf43d0e340156ae06933b6587 /src/mame/drivers/gcpinbal.cpp
parentfd15b251548da4de693141c1c7831f8d3b0e72a6 (diff)
it reduces the need for ' digit grouping in drivers, and it even reads naturally as English (nw)
Diffstat (limited to 'src/mame/drivers/gcpinbal.cpp')
-rw-r--r--src/mame/drivers/gcpinbal.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/gcpinbal.cpp b/src/mame/drivers/gcpinbal.cpp
index 4c7f25bdc46..419adf3062d 100644
--- a/src/mame/drivers/gcpinbal.cpp
+++ b/src/mame/drivers/gcpinbal.cpp
@@ -452,7 +452,7 @@ void gcpinbal_state::machine_reset()
MACHINE_CONFIG_START(gcpinbal_state::gcpinbal)
/* basic machine hardware */
- MCFG_CPU_ADD("maincpu", M68000, XTAL(32'000'000)/2) /* 16 MHz */
+ MCFG_CPU_ADD("maincpu", M68000, 32.0_MHz_XTAL/2) /* 16 MHz */
MCFG_CPU_PROGRAM_MAP(gcpinbal_map)
MCFG_CPU_VBLANK_INT_DRIVER("screen", gcpinbal_state, gcpinbal_interrupt)
@@ -479,13 +479,13 @@ MACHINE_CONFIG_START(gcpinbal_state::gcpinbal)
/* sound hardware */
MCFG_SPEAKER_STANDARD_MONO("mono")
- MCFG_OKIM6295_ADD("oki", XTAL(1'056'000), PIN7_HIGH)
+ MCFG_OKIM6295_ADD("oki", 1.056_MHz_XTAL, PIN7_HIGH)
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.30)
MCFG_DEVICE_ADD("adpcm_select", HCT157, 0)
MCFG_74157_OUT_CB(DEVWRITE8("msm", msm6585_device, data_w))
- MCFG_SOUND_ADD("msm", MSM6585, XTAL(640'000))
+ MCFG_SOUND_ADD("msm", MSM6585, 640.0_kHz_XTAL)
MCFG_MSM6585_VCK_CALLBACK(WRITELINE(gcpinbal_state, gcp_adpcm_int))
MCFG_MSM6585_PRESCALER_SELECTOR(S40) /* 16 kHz */
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.0)