summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author ajrhacker <ajrhacker@users.noreply.github.com>2017-10-06 11:34:32 -0400
committer GitHub <noreply@github.com>2017-10-06 11:34:32 -0400
commit5106fe7a5a66d84b1f813d1b4e9bdd1b1874980a (patch)
treef2cf8e5c14f83438dab33ef466eaf2882d1ab1bc
parent82edf4ebba7bc4bd9a1a2e631885d1905656694c (diff)
parentece6be80eb9babadb08cc0db7f72d8ccd714f9cb (diff)
Merge pull request #2701 from nplanel/fixup-timerC-mc68901
mc68901 : fix TCDCR register
-rw-r--r--src/devices/machine/mc68901.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/mc68901.cpp b/src/devices/machine/mc68901.cpp
index bf51e8820a3..8da39d3a4bd 100644
--- a/src/devices/machine/mc68901.cpp
+++ b/src/devices/machine/mc68901.cpp
@@ -789,7 +789,7 @@ void mc68901_device::register_w(offs_t offset, uint8_t data)
break;
case REGISTER_TCDCR:
- m_tcdcr = data & 0x6f;
+ m_tcdcr = data & 0x77;
switch (m_tcdcr & 0x07)
{