diff options
Diffstat (limited to 'src/devices/machine/wd_fdc.cpp')
-rw-r--r-- | src/devices/machine/wd_fdc.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/devices/machine/wd_fdc.cpp b/src/devices/machine/wd_fdc.cpp index d32626b5f03..056faa5cdf5 100644 --- a/src/devices/machine/wd_fdc.cpp +++ b/src/devices/machine/wd_fdc.cpp @@ -1146,6 +1146,14 @@ void wd_fdc_device_base::cmd_w(uint8_t val) LOGCOMP("Initiating command %02x\n", val); + // INTRQ flip-flop logic from die schematics: + // Reset conditions: + // - Command register write + // - Status register read + // Setting conditions: + // - While command register contain Dx (interrupt cmd) and one or more I0-I3 conditions met + // - Command-specific based on PLL microprogram + // No other logic present in real chips, descriptions of "Forced interrupt" (Dx) command in datasheets are wrong. if (intrq) { intrq = false; if(!intrq_cb.isnull()) |