summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author cracyc <cracyc@users.noreply.github.com>2021-06-26 16:18:46 -0500
committer cracyc <cracyc@users.noreply.github.com>2021-06-26 16:18:46 -0500
commitf4713dc28cb3676a61821d18cecb3d044e48bea1 (patch)
treed4d8587641bfb00bcb347c68cc99e89b67336abe
parentcd8d2a8050446282a1af95d02075cfe6b7059e6e (diff)
ds6417: fix mask
-rw-r--r--src/devices/machine/ds6417.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/ds6417.cpp b/src/devices/machine/ds6417.cpp
index 4a1128c2fe1..ef359d9ffd1 100644
--- a/src/devices/machine/ds6417.cpp
+++ b/src/devices/machine/ds6417.cpp
@@ -166,7 +166,7 @@ WRITE_LINE_MEMBER( ds6417_device::clock_w )
}
m_start = true;
- fseek(m_addr & 0x3fff, SEEK_SET);
+ fseek(m_addr & 0x7fff, SEEK_SET);
break;
}
}