mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
couple of victims of MCFG removal (nw)
This commit is contained in:
parent
576e9ee12e
commit
56a4a69a0a
@ -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);
|
||||
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user