diff options
author | 2017-06-10 12:34:43 -0400 | |
---|---|---|
committer | 2017-06-10 12:34:43 -0400 | |
commit | 6b7ca78a6c642d0b48e7a16f140cdffc62efac05 (patch) | |
tree | c187c0ca7847828ed1b4f244db4c317859edb7f0 /src/devices/bus/plus4/c1551.cpp | |
parent | d45ede82700f781aab3eac946d9878eb82cdce57 (diff) |
Further improvements to slot option validation (nw)
- All slot options are now validated whether or not they are user-selectable. This has already exposed a bug in one MSX-Audio device.
- Slots within slots, however, get added for validation only if they are declared fixed. Various Commodore floppy drives have been affected by this, since it doesn't look as if the current FDC emulation allows for detachability.
Diffstat (limited to 'src/devices/bus/plus4/c1551.cpp')
-rw-r--r-- | src/devices/bus/plus4/c1551.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/plus4/c1551.cpp b/src/devices/bus/plus4/c1551.cpp index 266720d26cf..c15932c30b2 100644 --- a/src/devices/bus/plus4/c1551.cpp +++ b/src/devices/bus/plus4/c1551.cpp @@ -366,7 +366,7 @@ static MACHINE_CONFIG_START( c1551 ) MCFG_DEVICE_ADD(C64H156_TAG, C64H156, XTAL_16MHz) MCFG_64H156_BYTE_CALLBACK(DEVWRITELINE(C64H156_TAG, c64h156_device, atni_w)) - MCFG_FLOPPY_DRIVE_ADD(C64H156_TAG":0", c1551_floppies, "525ssqd", c1551_device::floppy_formats) + MCFG_FLOPPY_DRIVE_ADD_FIXED(C64H156_TAG":0", c1551_floppies, "525ssqd", c1551_device::floppy_formats) MCFG_PLUS4_PASSTHRU_EXPANSION_SLOT_ADD() MACHINE_CONFIG_END |