diff options
author | 2013-11-17 11:15:26 +0000 | |
---|---|---|
committer | 2013-11-17 11:15:26 +0000 | |
commit | ca4aab3a4eac28324cc7ec77bf7c5dcc8b0d7164 (patch) | |
tree | eb65445963fa83e3a0509cb42b177b7415c30635 /src/emu/machine/wd_fdc.h | |
parent | be1cb25c3407d9adb522a24153332a9370fe3169 (diff) |
wd_fdc: Fixed ready interrupt polarity. Added a soft_reset() function which resets only the FDC and not the floppy image devices, thus preserving the correct ready states. [Curt Coder]
Diffstat (limited to 'src/emu/machine/wd_fdc.h')
-rw-r--r-- | src/emu/machine/wd_fdc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/emu/machine/wd_fdc.h b/src/emu/machine/wd_fdc.h index e21650269fb..96cc81be9b5 100644 --- a/src/emu/machine/wd_fdc.h +++ b/src/emu/machine/wd_fdc.h @@ -117,6 +117,8 @@ public: wd_fdc_t(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source); + void soft_reset(); + void dden_w(bool dden); void set_floppy(floppy_image_device *floppy); void setup_intrq_cb(line_cb cb); |