summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Robbbert <Robbbert@users.noreply.github.com>2020-10-08 03:31:40 +1100
committer Robbbert <Robbbert@users.noreply.github.com>2020-10-08 03:31:40 +1100
commitd2bda48f8f6a1aab800d59c7518a7e971cd9dd3e (patch)
tree53116f5361355ca2492a298bd78250213b7aae71
parentdd73e03c08b6e6058d55b73a6557f4c3d1355248 (diff)
kaypro: delineate the swlist items further, for when extra items get added.
-rw-r--r--src/mame/drivers/kaypro.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mame/drivers/kaypro.cpp b/src/mame/drivers/kaypro.cpp
index d57bc7ccfa2..bb65f6959a1 100644
--- a/src/mame/drivers/kaypro.cpp
+++ b/src/mame/drivers/kaypro.cpp
@@ -278,6 +278,7 @@ void kaypro_state::kayproiv(machine_config &config)
config.device_remove("fdc:1");
FLOPPY_CONNECTOR(config, "fdc:0", kaypro_floppies, "525dd", floppy_image_device::default_floppy_formats).enable_sound(true);
FLOPPY_CONNECTOR(config, "fdc:1", kaypro_floppies, "525dd", floppy_image_device::default_floppy_formats).enable_sound(true);
+ SOFTWARE_LIST(config.replace(), "flop_list").set_original("kaypro483");
}
void kaypro_state::omni2(machine_config &config)
@@ -374,12 +375,14 @@ void kaypro_state::kaypro10(machine_config &config)
kaypro484(config);
config.device_remove("fdc:1"); // only has 1 floppy drive
// need to add hard drive & controller
+ SOFTWARE_LIST(config.replace(), "flop_list").set_original("kaypro10");
}
void kaypro_state::kaypronew2(machine_config &config)
{
kaypro484(config);
config.device_remove("fdc:1"); // only has 1 floppy drive
+ SOFTWARE_LIST(config.replace(), "flop_list").set_original("kaypronew2");
}
void kaypro_state::kaypro284(machine_config &config)
@@ -389,7 +392,7 @@ void kaypro_state::kaypro284(machine_config &config)
config.device_remove("fdc:1");
FLOPPY_CONNECTOR(config, "fdc:0", kaypro_floppies, "525ssdd", floppy_image_device::default_floppy_formats).enable_sound(true);
FLOPPY_CONNECTOR(config, "fdc:1", kaypro_floppies, "525ssdd", floppy_image_device::default_floppy_formats).enable_sound(true);
- SOFTWARE_LIST(config.replace(), "flop_list").set_original("kayproii");
+ SOFTWARE_LIST(config.replace(), "flop_list").set_original("kaypro284");
}
void kaypro_state::init_kaypro()