diff options
author | 2019-02-11 18:18:45 +0100 | |
---|---|---|
committer | 2019-02-11 18:18:45 +0100 | |
commit | 502197b9c80b5f384dccc939fc93e1dbd6bf90c1 (patch) | |
tree | afb975bb2efbc8638c0b1717c1a6b08abd550f8a /src/devices/bus/c64/ps64.cpp | |
parent | b07f23632a3f3cbaf08337ad68f8598feadcefbd (diff) |
screen.h: adddedconstructor for monochrom screens and removed MCFG_SCREEN_ADD_MONOCHROME and MCFG_SCREEN_COLOR (nw)
misc MACHINE_CONFIG removal (nw)
started work on voltage_regulator_device macros removal (nw)
Diffstat (limited to 'src/devices/bus/c64/ps64.cpp')
-rw-r--r-- | src/devices/bus/c64/ps64.cpp | 21 |
1 files changed, 5 insertions, 16 deletions
diff --git a/src/devices/bus/c64/ps64.cpp b/src/devices/bus/c64/ps64.cpp index b70c8a61c0f..fbfad3fe7d2 100644 --- a/src/devices/bus/c64/ps64.cpp +++ b/src/devices/bus/c64/ps64.cpp @@ -61,25 +61,14 @@ DEFINE_DEVICE_TYPE(C64_PS64, c64_ps64_cartridge_device, "c64_ps64", "C64 PS-64") //------------------------------------------------- -// votrax_sc02_interface votrax_intf -//------------------------------------------------- -/* -static struct votrax_sc02_interface votrax_intf = -{ - DEVCB_NOOP -}; -*/ - - -//------------------------------------------------- // device_add_mconfig - add device configuration //------------------------------------------------- -MACHINE_CONFIG_START(c64_ps64_cartridge_device::device_add_mconfig) - //MCFG_SPEAKER_STANDARD_MONO("mono") - //MCFG_VOTRAX_SC02_ADD(SSI263_TAG, 2000000, votrax_intf) - //MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.00) -MACHINE_CONFIG_END +void c64_ps64_cartridge_device::device_add_mconfig(machine_config &config) +{ + //SPEAKER(config, "speaker").front_center(); + //VOTRAX_SC02(config, SSI263_TAG, 2000000).add_route(ALL_OUTPUTS, "mono", 1.00); +} |