From: Lukas Krickl Date: Wed, 25 Jun 2025 08:08:19 +0000 (+0200) Subject: archs: Fixed type in sbc a, n8 instruction X-Git-Url: https://git.krickl.dev/?a=commitdiff_plain;ds=inline;p=ulas%2F.git archs: Fixed type in sbc a, n8 instruction --- diff --git a/src/archs.c b/src/archs.c index c715029..d2e8f94 100644 --- a/src/archs.c +++ b/src/archs.c @@ -255,7 +255,7 @@ const struct ulas_instr ULASINSTRS_SM83[] = { ULAS_INSTRSM83_R8_EXPR8("or", 0xF6, ULAS_REGSM83_A), ULAS_INSTRSM83_R8_EXPR8("adc", 0xCE, ULAS_REGSM83_A), - ULAS_INSTRSM83_R8_EXPR8("suc", 0xDE, ULAS_REGSM83_A), + ULAS_INSTRSM83_R8_EXPR8("sbc", 0xDE, ULAS_REGSM83_A), ULAS_INSTRSM83_R8_EXPR8("xor", 0xEE, ULAS_REGSM83_A), ULAS_INSTRSM83_R8_EXPR8("cp", 0xFE, ULAS_REGSM83_A),