summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2020-06-21 20:57:15 -0400
committer AJR <ajrhacker@users.noreply.github.com>2020-06-21 20:57:15 -0400
commit6bb4b454629887c060ee0181c305739ab00f8cdf (patch)
tree42a2ca4e2b2f68919efccb9eb652c9c7057f912d
parent562cb2139ff44221d116bab029e6bafa0fda842c (diff)
tlcs900: Fix MAX instruction (nw)
-rw-r--r--src/devices/cpu/tlcs900/900tbl.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/tlcs900/900tbl.hxx b/src/devices/cpu/tlcs900/900tbl.hxx
index b6c2466655f..44099216fb9 100644
--- a/src/devices/cpu/tlcs900/900tbl.hxx
+++ b/src/devices/cpu/tlcs900/900tbl.hxx
@@ -2569,7 +2569,7 @@ void tlcs900_device::op_LINK()
void tlcs900_device::op_MAX()
{
- m_sr.b.h |= 0x04;
+ m_sr.b.h |= 0x08;
}