From 56a4a69a0a7dfb030958bd733bce36ce1df6e431 Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Sat, 9 Nov 2019 01:40:13 +1100 Subject: couple of victims of MCFG removal (nw) --- src/mame/drivers/apple2e.cpp | 8 ++++---- src/mame/drivers/shisen.cpp | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/mame/drivers/apple2e.cpp b/src/mame/drivers/apple2e.cpp index 5bfcd4c7721..ce0368f91f8 100644 --- a/src/mame/drivers/apple2e.cpp +++ b/src/mame/drivers/apple2e.cpp @@ -4212,9 +4212,9 @@ static void apple2_cards(device_slot_interface &device) static void apple2eaux_cards(device_slot_interface &device) { - device.option_add("std80", A2EAUX_STD80COL); /* Apple IIe Standard 80 Column Card */ - device.option_add("ext80", A2EAUX_EXT80COL); /* Apple IIe Extended 80 Column Card */ - device.option_add("rw3", A2EAUX_RAMWORKS3); /* Applied Engineering RamWorks III */ + device.option_add("std80", A2EAUX_STD80COL); // Apple IIe Standard 80 Column Card + device.option_add("ext80", A2EAUX_EXT80COL); // Apple IIe Extended 80 Column Card + device.option_add("rw3", A2EAUX_RAMWORKS3); // Applied Engineering RamWorks III } void apple2e_state::apple2e(machine_config &config) @@ -4321,7 +4321,7 @@ void apple2e_state::apple2e(machine_config &config) m_a2eauxslot->set_space(m_maincpu, AS_PROGRAM); m_a2eauxslot->out_irq_callback().set(FUNC(apple2e_state::a2bus_irq_w)); m_a2eauxslot->out_nmi_callback().set(FUNC(apple2e_state::a2bus_nmi_w)); - A2EAUXSLOT_SLOT(config, "aux", m_a2eauxslot, apple2eaux_cards, "ext80"); + A2EAUXSLOT_SLOT(config, "aux", m_a2eauxslot, apple2eaux_cards, "ext80"); // default to an extended 80-column card APPLE2_GAMEIO(config, m_gameio, apple2_gameio_device::default_options, nullptr); diff --git a/src/mame/drivers/shisen.cpp b/src/mame/drivers/shisen.cpp index e678f7283c6..a5c17c22e1f 100644 --- a/src/mame/drivers/shisen.cpp +++ b/src/mame/drivers/shisen.cpp @@ -239,7 +239,7 @@ void shisen_state::shisen(machine_config &config) ymsnd.add_route(0, "lspeaker", 0.5); ymsnd.add_route(1, "rspeaker", 0.5); - DAC_8BIT_R2R(config, "dac", 0).add_route(ALL_OUTPUTS, "lspeaker", 0.25).add_route(ALL_OUTPUTS, "rspeaker", 0x25); // unknown DAC + DAC_8BIT_R2R(config, "dac", 0).add_route(ALL_OUTPUTS, "lspeaker", 0.25).add_route(ALL_OUTPUTS, "rspeaker", 0.25); // unknown DAC voltage_regulator_device &vref(VOLTAGE_REGULATOR(config, "vref")); vref.add_route(0, "dac", 1.0, DAC_VREF_POS_INPUT); vref.add_route(0, "dac", -1.0, DAC_VREF_NEG_INPUT); -- cgit v1.2.3