diff options
Diffstat (limited to 'src/devices/bus/ieee488/hp9895.cpp')
-rw-r--r-- | src/devices/bus/ieee488/hp9895.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/devices/bus/ieee488/hp9895.cpp b/src/devices/bus/ieee488/hp9895.cpp index e7338e211b7..ee23db8c6cb 100644 --- a/src/devices/bus/ieee488/hp9895.cpp +++ b/src/devices/bus/ieee488/hp9895.cpp @@ -874,10 +874,9 @@ static void hp9895_floppies(device_slot_interface &device) device.option_add("8dsdd" , FLOPPY_8_DSDD); } -static const floppy_format_type hp9895_floppy_formats[] = { - FLOPPY_MFI_FORMAT, - FLOPPY_HPI_FORMAT, - nullptr +static void hp9895_floppy_formats(format_registration &fr) +{ + fr.add(FLOPPY_HPI_FORMAT); }; const tiny_rom_entry *hp9895_device::device_rom_region() const |