diff options
author | 2018-01-07 22:20:14 +0100 | |
---|---|---|
committer | 2018-01-17 16:11:18 +0100 | |
commit | d469cc04bcace0f601802301caeddc5b473b75f2 (patch) | |
tree | a9d71540c9c69cee5ab3a533476b81833fa02f5f /src/devices/bus/sg1000_exp | |
parent | 9f383f76ce6f00cc3320e5ba53dc323781e0077b (diff) |
API Change: Machine configs are now a method of the owner class, and the prototype is simplified [O. Galibert]
Beware, the device context does not follow in MCFG_FRAGMENT_ADD
anymore due to the prototype change. So creating a device then
configuring through a fragment doesn't work as-is. The simplest
solution is just to add a MCFG_DEVICE_MODIFY at the start of the
fragment with the correct tag.
Diffstat (limited to 'src/devices/bus/sg1000_exp')
-rw-r--r-- | src/devices/bus/sg1000_exp/fm_unit.cpp | 2 | ||||
-rw-r--r-- | src/devices/bus/sg1000_exp/sk1100.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/sg1000_exp/fm_unit.cpp b/src/devices/bus/sg1000_exp/fm_unit.cpp index 7abcd70c08b..ba46f795885 100644 --- a/src/devices/bus/sg1000_exp/fm_unit.cpp +++ b/src/devices/bus/sg1000_exp/fm_unit.cpp @@ -50,7 +50,7 @@ SMS version is not playing PSG sound on his Mark III with the FM unit. DEFINE_DEVICE_TYPE(SEGA_FM_UNIT, sega_fm_unit_device, "sega_fm_unit", "SG-1000 FM Sound Unit") -MACHINE_CONFIG_MEMBER( sega_fm_unit_device::device_add_mconfig ) +MACHINE_CONFIG_START(sega_fm_unit_device::device_add_mconfig) MCFG_SOUND_ADD("ym2413", YM2413, XTAL_10_738635MHz/3) // if this output gain is changed, the gain set when unmute the output need // to be changed too, probably along the gain set for SMSJ/SMSKRFM drivers. diff --git a/src/devices/bus/sg1000_exp/sk1100.cpp b/src/devices/bus/sg1000_exp/sk1100.cpp index d5cbd9d0183..89e4338ff28 100644 --- a/src/devices/bus/sg1000_exp/sk1100.cpp +++ b/src/devices/bus/sg1000_exp/sk1100.cpp @@ -154,7 +154,7 @@ ioport_constructor sega_sk1100_device::device_input_ports() const } -MACHINE_CONFIG_MEMBER( sega_sk1100_device::device_add_mconfig ) +MACHINE_CONFIG_START(sega_sk1100_device::device_add_mconfig) /* devices */ MCFG_DEVICE_ADD(UPD9255_0_TAG, I8255, 0) MCFG_I8255_IN_PORTA_CB(READ8(sega_sk1100_device, ppi_pa_r)) |