From 933dc0f5c83016345bef0dd7c5b5b88de495c9c3 Mon Sep 17 00:00:00 2001 From: Yang Liu Date: Thu, 26 Sep 2024 16:04:20 +0800 Subject: [PATCH] [LA64_DYNAREC] Fixed emit_add16 LBT implementation (#1875) --- src/dynarec/la64/dynarec_la64_emit_math.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dynarec/la64/dynarec_la64_emit_math.c b/src/dynarec/la64/dynarec_la64_emit_math.c index 1e7fc3f9e..47cf7ffd9 100644 --- a/src/dynarec/la64/dynarec_la64_emit_math.c +++ b/src/dynarec/la64/dynarec_la64_emit_math.c @@ -423,7 +423,7 @@ void emit_add16(dynarec_la64_t* dyn, int ninst, int s1, int s2, int s3, int s4, } IFXA (X_ALL, la64_lbt) { - X64_ADD_DU(s1, s2); + X64_ADD_H(s1, s2); } ADD_D(s1, s1, s2);