diff options
author | 2013-02-11 07:44:56 +0000 | |
---|---|---|
committer | 2013-02-11 07:44:56 +0000 | |
commit | a440a8e0200a36491ae540f6f00beae59c148549 (patch) | |
tree | b4c31ebadaa2857396c37178674086420bf1658f /src/emu/machine/wd_fdc.c | |
parent | 4b0b4e6b2fa7eb5105859f561354662d479f53be (diff) |
Cleanups and version bumpmame0148u1
Diffstat (limited to 'src/emu/machine/wd_fdc.c')
-rw-r--r-- | src/emu/machine/wd_fdc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/machine/wd_fdc.c b/src/emu/machine/wd_fdc.c index 0711626d948..bb353c176c6 100644 --- a/src/emu/machine/wd_fdc.c +++ b/src/emu/machine/wd_fdc.c @@ -1002,10 +1002,10 @@ void wd_fdc_t::sector_w(UINT8 val) if (inverted_bus) val ^= 0xff; // No more than one write in flight - // C1581 accesses this register with an INC opcode, + // C1581 accesses this register with an INC opcode, // i.e. write old value, write new value, and the new value gets ignored by this //if(sector_buffer != -1) - // return; + // return; sector_buffer = val; delay_cycles(t_sector, dden ? delay_register_commit*2 : delay_register_commit); |