From 6bb4b454629887c060ee0181c305739ab00f8cdf Mon Sep 17 00:00:00 2001 From: AJR Date: Sun, 21 Jun 2020 20:57:15 -0400 Subject: [PATCH] tlcs900: Fix MAX instruction (nw) --- src/devices/cpu/tlcs900/900tbl.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }