From 335cd065977bda4e2b6290f9aecad320a9391bfe Mon Sep 17 00:00:00 2001 From: Tomoaki Kawada Date: Sun, 17 Apr 2022 13:59:38 +0900 Subject: target/rx: set PSW.I when executing wait instruction This patch fixes the implementation of the wait instruction to implicitly update PSW.I as required by the ISA specification. Signed-off-by: Tomoaki Kawada Reviewed-by: Yoshinori Sato Reviewed-by: Richard Henderson Message-Id: <20220417045937.2128699-1-i@yvt.jp> Signed-off-by: Richard Henderson --- target/rx/op_helper.c | 1 + 1 file changed, 1 insertion(+) (limited to 'target/rx/op_helper.c') diff --git a/target/rx/op_helper.c b/target/rx/op_helper.c index 11f952d..81645ad 100644 --- a/target/rx/op_helper.c +++ b/target/rx/op_helper.c @@ -448,6 +448,7 @@ void QEMU_NORETURN helper_wait(CPURXState *env) cs->halted = 1; env->in_sleep = 1; + env->psw_i = 1; raise_exception(env, EXCP_HLT, 0); } -- cgit v1.1