summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/apple2e.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2019-11-09 01:40:13 +1100
committer Vas Crabb <vas@vastheman.com>2019-11-09 01:40:13 +1100
commit56a4a69a0a7dfb030958bd733bce36ce1df6e431 (patch)
treeef4d160a8b1a5f03517c8780b3270eeb76c9bbe9 /src/mame/drivers/apple2e.cpp
parent576e9ee12e2399312d78b629975018711cf6fd97 (diff)
couple of victims of MCFG removal (nw)
Diffstat (limited to 'src/mame/drivers/apple2e.cpp')
-rw-r--r--src/mame/drivers/apple2e.cpp8
1 files changed, 4 insertions, 4 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);