diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/mame/drivers/apple2.cpp | 8 | ||||
-rw-r--r-- | src/mame/drivers/apple2e.cpp | 12 | ||||
-rw-r--r-- | src/mame/drivers/apple2gs.cpp | 11 |
3 files changed, 16 insertions, 15 deletions
diff --git a/src/mame/drivers/apple2.cpp b/src/mame/drivers/apple2.cpp index 6020af74499..f3449541fa7 100644 --- a/src/mame/drivers/apple2.cpp +++ b/src/mame/drivers/apple2.cpp @@ -1440,9 +1440,9 @@ void apple2_state::apple2_common(machine_config &config) A2BUS_SLOT(config, "sl7", m_a2bus, apple2_cards, nullptr); /* Set up the softlists: clean cracks priority, originals second, others last */ - SOFTWARE_LIST(config, "flop525_clean").set_original("apple2_flop_clcracked"); - SOFTWARE_LIST(config, "flop525_orig").set_compatible("apple2_flop_orig").set_filter("A2"); - 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("A2"); + SOFTWARE_LIST(config, "flop_a2_misc").set_compatible("apple2_flop_misc"); SOFTWARE_LIST(config, "cass_list").set_original("apple2_cass"); //MCFG_SOFTWARE_LIST_ADD("cass_list", "apple2_cass") @@ -1462,7 +1462,7 @@ void apple2_state::apple2(machine_config &config) void apple2_state::apple2p(machine_config &config) { apple2_common(config); - subdevice<software_list_device>("flop525_orig")->set_filter("A2P"); // Filter list to compatible disks for this machine. + subdevice<software_list_device>("flop_a2_orig")->set_filter("A2P"); // Filter list to compatible disks for this machine. /* internal ram */ RAM(config, RAM_TAG).set_default_size("48K").set_extra_options("16K,32K,48K").set_default_value(0x00); } 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"); diff --git a/src/mame/drivers/apple2gs.cpp b/src/mame/drivers/apple2gs.cpp index 87602c4e688..968eff0c08f 100644 --- a/src/mame/drivers/apple2gs.cpp +++ b/src/mame/drivers/apple2gs.cpp @@ -5035,11 +5035,12 @@ void apple2gs_state::apple2gs(machine_config &config) applefdintf_device::add_35(config, m_floppy[2]); applefdintf_device::add_35(config, m_floppy[3]); - SOFTWARE_LIST(config, "flop35_list").set_original("apple2gs_flop_orig"); // Until we have clean cracks, use this as the default - SOFTWARE_LIST(config, "flop35_misc").set_compatible("apple2gs_flop_misc"); // Legacy software list pre-June 2021 and defaced cracks - SOFTWARE_LIST(config, "flop525_clean").set_compatible("apple2_flop_clcracked"); // No filter on clean cracks yet. - SOFTWARE_LIST(config, "flop525_orig").set_compatible("apple2_flop_orig").set_filter("A2GS"); // Filter list to compatible disks for this machine. - SOFTWARE_LIST(config, "flop525_misc").set_compatible("apple2_flop_misc"); + SOFTWARE_LIST(config, "flop_gs_clean").set_original("apple2gs_flop_clcracked"); // GS-specific cleanly cracked disks + SOFTWARE_LIST(config, "flop_gs_orig").set_compatible("apple2gs_flop_orig"); // Original disks for GS + SOFTWARE_LIST(config, "flop_gs_misc").set_compatible("apple2gs_flop_misc"); // Legacy software list pre-June 2021 and defaced cracks + SOFTWARE_LIST(config, "flop_a2_clean").set_compatible("apple2_flop_clcracked"); // Apple II series cleanly cracked + SOFTWARE_LIST(config, "flop_a2_orig").set_compatible("apple2_flop_orig").set_filter("A2GS"); // Filter list to compatible disks for this machine. + SOFTWARE_LIST(config, "flop_a2_misc").set_compatible("apple2_flop_misc"); } void apple2gs_state::apple2gsr1(machine_config &config) |