diff options
author | 2018-05-09 11:18:33 +0700 | |
---|---|---|
committer | 2018-05-09 11:18:33 +0700 | |
commit | c5013e17346e4dade324c6aed3218dc9c780f014 (patch) | |
tree | 818919246ba4be57629e7e8ebd9c91b8c51724ad | |
parent | d09d1800447474c0d01a65b5b5c9575a98946e04 (diff) |
parens (nw)
-rw-r--r-- | src/devices/cpu/tms32031/tms32031.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/tms32031/tms32031.cpp b/src/devices/cpu/tms32031/tms32031.cpp index e44b0d7b881..83677827bc7 100644 --- a/src/devices/cpu/tms32031/tms32031.cpp +++ b/src/devices/cpu/tms32031/tms32031.cpp @@ -887,7 +887,7 @@ WRITE32_MEMBER(tms3203x_device::primary_bus_control_w) } // enable of external hold with hold pending - if (m_primary_bus_control & NOHOLD && !(data & NOHOLD) && m_hold_state) + if ((m_primary_bus_control & NOHOLD) && !(data & NOHOLD) && m_hold_state) { m_primary_bus_control |= HOLDST; m_holda_cb(ASSERT_LINE); |