diff options
author | 2018-05-09 19:26:44 +1000 | |
---|---|---|
committer | 2018-05-09 19:26:44 +1000 | |
commit | 6c11b3ce0131be3b14edf5ef93fa9cb2380ae45b (patch) | |
tree | 07181df4c25bf034f38aa13cf19c4ee2995d3e7f /src/devices/bus/cpc/playcity.cpp | |
parent | be68e91d80f242ca173ba8009dd8c68dbc4b7b29 (diff) |
dsp16: fix condition mask in disassembler (nw)
(nw) remove more MCFG macros and make speaker config more explicit
Diffstat (limited to 'src/devices/bus/cpc/playcity.cpp')
-rw-r--r-- | src/devices/bus/cpc/playcity.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/devices/bus/cpc/playcity.cpp b/src/devices/bus/cpc/playcity.cpp index a375fccce2c..433955b9ba7 100644 --- a/src/devices/bus/cpc/playcity.cpp +++ b/src/devices/bus/cpc/playcity.cpp @@ -30,7 +30,8 @@ MACHINE_CONFIG_START(cpc_playcity_device::device_add_mconfig) MCFG_Z80CTC_ZC2_CB(WRITELINE("ctc",z80ctc_device, trg3)) MCFG_Z80CTC_INTR_CB(WRITELINE(*this, cpc_playcity_device, ctc_intr_cb)) - MCFG_SPEAKER_STANDARD_STEREO("lspeaker","rspeaker") + SPEAKER(config, "lspeaker").front_left(); + SPEAKER(config, "rspeaker").front_right(); MCFG_DEVICE_ADD("ymz_1",YMZ294,XTAL(4'000'000)) // when timer is not set, operates at 4MHz (interally divided by 2, so equivalent to the ST) MCFG_SOUND_ROUTE(ALL_OUTPUTS, "rspeaker", 0.30) MCFG_DEVICE_ADD("ymz_2",YMZ294,XTAL(4'000'000)) |