diff --git a/src/floppy/fdd_86f.c b/src/floppy/fdd_86f.c index 34c9b2f57..fc8c969ca 100644 --- a/src/floppy/fdd_86f.c +++ b/src/floppy/fdd_86f.c @@ -10,7 +10,7 @@ * data in the form of FM/MFM-encoded transitions) which also * forms the core of the emulator's floppy disk emulation. * - * Version: @(#)fdd_86f.c 1.0.13 2018/09/15 + * Version: @(#)fdd_86f.c 1.0.14 2018/09/15 * * Authors: Fred N. van Kempen, * Miran Grca, @@ -744,6 +744,9 @@ d86f_valid_bit_rate(int drive) case 3: /* ED with 2000 kbps support */ if (rate < 3) return 0; return 1; + + default: + break; } return 0; diff --git a/src/machine/m_at_4x0.c b/src/machine/m_at_4x0.c index 5a84147a7..217eaf8a1 100644 --- a/src/machine/m_at_4x0.c +++ b/src/machine/m_at_4x0.c @@ -8,7 +8,7 @@ * * Implementation of the Intel PCISet chips from 430LX to 440FX. * - * Version: @(#)m_at_430lx_nx.c 1.0.1 2018/09/12 + * Version: @(#)m_at_430lx_nx.c 1.0.2 2018/09/15 * * Authors: Sarah Walker, * Miran Grca, @@ -628,7 +628,7 @@ machine_at_president_init(const machine_t *model) pci_register_slot(0x07, PCI_CARD_SPECIAL, 0, 0, 0, 0); device_add(&i430fx_device); device_add(&piix_device); - w83877f_init(); + w83877f_init(4); device_add(&intel_flash_bxt_device); } @@ -777,7 +777,7 @@ machine_at_p55t2p4_init(const machine_t *model) pci_register_slot(0x07, PCI_CARD_SPECIAL, 0, 0, 0, 0); device_add(&i430hx_device); device_add(&piix3_device); - w83877f_init(); + w83877f_init(5); device_add(&intel_flash_bxt_device); } @@ -822,7 +822,7 @@ machine_at_p55tvp4_init(const machine_t *model) pci_register_slot(0x07, PCI_CARD_SPECIAL, 0, 0, 0, 0); device_add(&i430vx_device); device_add(&piix3_device); - w83877f_init(); + w83877f_init(5); device_add(&intel_flash_bxt_device); }