diff options
author | 2016-09-27 13:19:52 +0200 | |
---|---|---|
committer | 2016-09-27 13:19:52 +0200 | |
commit | 89d21d87d3a42f36a0dd125a0f6db04cefcc2fd6 (patch) | |
tree | 27e1c8da06c24ee6d97f5ffe1be0e63f023587d3 | |
parent | 084af3883b718eb36b9e60c9ab2f9116015a87fc (diff) |
Opening up a new branch for sh7604 rewrite.
-rw-r--r-- | src/devices/cpu/sh2/sh2comn.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/sh2/sh2comn.cpp b/src/devices/cpu/sh2/sh2comn.cpp index 2fbeff0fa9d..b5d8e43aaa3 100644 --- a/src/devices/cpu/sh2/sh2comn.cpp +++ b/src/devices/cpu/sh2/sh2comn.cpp @@ -725,7 +725,7 @@ READ32_MEMBER( sh2_device::sh7604_r ) return (m_m[0x38] & 0x7fffffff) | (m_nmi_line_state == ASSERT_LINE ? 0 : 0x80000000); case 0x78: // BCR1 - return m_is_slave ? 0x00008000 : 0; + return (m_is_slave ? 0x00008000 : 0) | (m_m[0x78] & 0x7fff); case 0x41: // dvdntl mirrors case 0x47: |