more codestyle

This commit is contained in:
mrdudz
2025-06-21 22:33:43 +02:00
parent 6b554362a5
commit 4a11fa791a
2 changed files with 3 additions and 3 deletions

View File

@@ -2251,7 +2251,7 @@ static void Put45GS02_Q (const InsDesc* Ins)
{
EffAddr A;
if (EvalEA(Ins, &A)) {
if (EvalEA (Ins, &A)) {
Emit0 (0x42);
Emit0 (0x42);
if ((A.AddrModeBit == AM65_DIR_IND_LONG) ||

View File

@@ -369,7 +369,7 @@ static unsigned HandleChangedLength(const OpcDesc* D, unsigned PC)
{
if (D->Flags & flSizeChanges) {
if (CPU == CPU_45GS02) {
if ((D->Handler == OH_Implicit_42_45GS02)) {
if (D->Handler == OH_Implicit_42_45GS02) {
if (GetCodeByte (PC+1) == 0x42) {
/* NEG:NEG prefix (0x42 0x42) */
unsigned opc = GetCodeByte (PC+2);
@@ -386,7 +386,7 @@ static unsigned HandleChangedLength(const OpcDesc* D, unsigned PC)
}
}
}
} else if ((D->Handler == OH_Implicit_ea_45GS02)) {
} else if (D->Handler == OH_Implicit_ea_45GS02) {
/* NOP prefix (0xea) */
if ((GetCodeByte (PC+1) & 0x1f) == 0x12) {
PC += 2;