mirror of
https://github.com/holub/mame
synced 2025-04-21 16:01:56 +03:00
applefdintf: add helpers for adding 400K and HD Sony drives [R. Belmont]
This commit is contained in:
parent
d47b43400a
commit
fb58ad9d8e
@ -78,6 +78,12 @@ public:
|
||||
template<typename T> static void add_35(machine_config &config, T &floppy) {
|
||||
FLOPPY_CONNECTOR(config, floppy, floppies_35, "35dd", formats_35).enable_sound(true);
|
||||
}
|
||||
template<typename T> static void add_35_sd(machine_config &config, T &floppy) {
|
||||
FLOPPY_CONNECTOR(config, floppy, floppies_35, "35sd", formats_35).enable_sound(true);
|
||||
}
|
||||
template<typename T> static void add_35_hd(machine_config &config, T &floppy) {
|
||||
FLOPPY_CONNECTOR(config, floppy, floppies_35, "35hd", formats_35).enable_sound(true);
|
||||
}
|
||||
template<typename T> static void add_35_nc(machine_config &config, T &floppy) {
|
||||
FLOPPY_CONNECTOR(config, floppy, floppies_35, nullptr, formats_35).enable_sound(true);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user