summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/apple2e.cpp
diff options
context:
space:
mode:
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);