summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/apple2e.cpp
diff options
context:
space:
mode:
author Firehawke <34792592+Firehawke@users.noreply.github.com>2021-11-21 06:29:35 -0700
committer GitHub <noreply@github.com>2021-11-21 08:29:35 -0500
commit23d787e3700a998b9a49bc41d7422e7056db666c (patch)
tree64724e34f615c68d180f57009cf257eab9bfd87b /src/mame/drivers/apple2e.cpp
parent28759e0ec2f7dd31d4843d718fc0d457f9025151 (diff)
Apple softlist update for November 2021 (#8850)
Apple II software list support adjustments: * change 'flop525' to 'flop_a2' where 3.5s also in same lists * Add apple2gs_flop_clcracked and make it default for IIgs. New working software list additions (apple2_flop_orig.xml) ---------------------------------------------------------- Wargle! [4am, Firehawke] A Question of Scruples [4am, Firehawke] J-Bird [4am, Firehawke] Star Dance [4am, Firehawke] Disk Organizer (Version 2.6) [4am, Firehawke] Super Disk Copy (Version 3.8) [4am, Firehawke] Nibbles Away ][ (Version C3) [4am, Firehawke] Essential Data Duplicator (Version 4.4) [4am, Firehawke] New working software list additions (apple2_flop_clcracked.xml) --------------------------------------------------------------- Numberball (cleanly cracked) [4am, Firehawke] PFS:File (Version A.00) (cleanly cracked) [4am, Firehawke]
Diffstat (limited to 'src/mame/drivers/apple2e.cpp')
-rw-r--r--src/mame/drivers/apple2e.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/drivers/apple2e.cpp b/src/mame/drivers/apple2e.cpp
index aa6eb6eb452..d0827ef01f1 100644
--- a/src/mame/drivers/apple2e.cpp
+++ b/src/mame/drivers/apple2e.cpp
@@ -4980,9 +4980,9 @@ void apple2e_state::apple2e(machine_config &config)
/* softlist config for baseline A2E
By default, filter lists where possible to compatible disks for A2E */
- SOFTWARE_LIST(config, "flop525_clean").set_original("apple2_flop_clcracked");
- SOFTWARE_LIST(config, "flop525_orig").set_compatible("apple2_flop_orig").set_filter("A2E");
- SOFTWARE_LIST(config, "flop525_misc").set_compatible("apple2_flop_misc");
+ SOFTWARE_LIST(config, "flop_a2_clean").set_original("apple2_flop_clcracked");
+ SOFTWARE_LIST(config, "flop_a2_orig").set_compatible("apple2_flop_orig").set_filter("A2E");
+ SOFTWARE_LIST(config, "flop_a2_misc").set_compatible("apple2_flop_misc");
CASSETTE(config, m_cassette);
m_cassette->set_default_state(CASSETTE_STOPPED);
@@ -5008,7 +5008,7 @@ void apple2e_state::mprof3(machine_config &config)
void apple2e_state::apple2ee(machine_config &config)
{
apple2e(config);
- subdevice<software_list_device>("flop525_orig")->set_filter("A2EE"); // Filter list to compatible disks for this machine.
+ subdevice<software_list_device>("flop_a2_orig")->set_filter("A2EE"); // Filter list to compatible disks for this machine.
M65C02(config.replace(), m_maincpu, 1021800);
m_maincpu->set_addrmap(AS_PROGRAM, &apple2e_state::apple2e_map);
@@ -5055,7 +5055,7 @@ void apple2e_state::apple2ep(machine_config &config)
void apple2e_state::apple2c(machine_config &config)
{
apple2ee(config);
- subdevice<software_list_device>("flop525_orig")->set_filter("A2C"); // Filter list to compatible disks for this machine.
+ subdevice<software_list_device>("flop_a2_orig")->set_filter("A2C"); // Filter list to compatible disks for this machine.
M65C02(config.replace(), m_maincpu, 1021800);
m_maincpu->set_addrmap(AS_PROGRAM, &apple2e_state::apple2c_map);
@@ -5350,7 +5350,7 @@ void apple2e_state::cec(machine_config &config)
A2BUS_DISKIING(config, "sl6", A2BUS_7M_CLOCK).set_onboard(m_a2bus);
- SOFTWARE_LIST(config, "flop525_cec").set_original("cecflop");
+ SOFTWARE_LIST(config, "flop_cec").set_original("cecflop");
// there is no aux slot, the "aux" side of the //e is used for additional ROM
config.device_remove("aux");