diff options
| author | 2013-06-09 14:37:01 +0000 | |
|---|---|---|
| committer | 2013-06-09 14:37:01 +0000 | |
| commit | cf58f7f28b4d2ae0bfc8e2dedb8b89db8bdf529f (patch) | |
| tree | 2ae4c3099bb59bc4f0b783c9182d38b64dc74042 | |
| parent | 3e5766d0ffe07551d46ae6ee576fdf8c7a592520 (diff) | |
Move & 7. I'm pretty sure that line is never called, at least in the old code it could never reach the equivalent line. (nw)
| -rw-r--r-- | src/emu/machine/ataflash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/machine/ataflash.c b/src/emu/machine/ataflash.c index e175fb19a51..4499e3391ce 100644 --- a/src/emu/machine/ataflash.c +++ b/src/emu/machine/ataflash.c @@ -63,7 +63,7 @@ WRITE16_MEMBER( ata_flash_pccard_device::write_memory ) } else if( offset <= 15) { - m_card->write_cs1(space, offset, data & 7, mem_mask); + m_card->write_cs1(space, offset & 7, data, mem_mask); } } |
