A slight fix in fdd_86f.c;

The updated m_at_4x0.c I forgot before.
This commit is contained in:
OBattler
2018-09-15 02:50:38 +02:00
parent e401ea0e7b
commit 3255c3c230
2 changed files with 8 additions and 5 deletions

View File

@@ -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, <decwiz@yahoo.com>
* Miran Grca, <mgrca8@gmail.com>
@@ -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;

View File

@@ -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, <http://pcem-emulator.co.uk/>
* Miran Grca, <mgrca8@gmail.com>
@@ -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);
}