IBM PS/1 Model 2121 FDC fix.

This commit is contained in:
OBattler
2024-04-18 03:50:48 +02:00
parent 75919a1cb9
commit fed171ff4d
3 changed files with 19 additions and 2 deletions

View File

@@ -780,7 +780,7 @@ fdc_write(uint16_t addr, uint8_t val, void *priv)
}
return;
case 4:
if (!(fdc->flags & FDC_FLAG_PS1)) {
if (!(fdc->flags & FDC_FLAG_NO_DSR_RESET)) {
if (!(val & 0x80)) {
timer_set_delay_u64(&fdc->timer, 8 * TIMER_USEC);
fdc->interrupt = -6;
@@ -2608,6 +2608,20 @@ const device_t fdc_at_ps1_device = {
.config = NULL
};
const device_t fdc_at_ps1_2121_device = {
.name = "PC/AT Floppy Drive Controller (PS/1, PS/2 ISA)",
.internal_name = "fdc_at_ps1",
.flags = 0,
.local = FDC_FLAG_NO_DSR_RESET | FDC_FLAG_DISKCHG_ACTLOW | FDC_FLAG_AT | FDC_FLAG_PS1,
.init = fdc_init,
.close = fdc_close,
.reset = fdc_reset,
{ .available = NULL },
.speed_changed = NULL,
.force_redraw = NULL,
.config = NULL
};
const device_t fdc_at_smc_device = {
.name = "PC/AT Floppy Drive Controller (SM(s)C FDC37Cxxx)",
.internal_name = "fdc_at_smc",