X-Git-Url: https://git.reactos.org/?p=reactos.git;a=blobdiff_plain;f=reactos%2Flib%2Ffast486%2Fopcodes.c;h=a719988710343f347638f49ad7d72d4304b1be35;hp=1d773f908002adb8eb7e9d80390d8bbbaa06df04;hb=db6be8948b491d14d93e1e142e92a7133fdd3213;hpb=628b200fa4ee6dd44a6fb39c02c4074f39b9d68c diff --git a/reactos/lib/fast486/opcodes.c b/reactos/lib/fast486/opcodes.c index 1d773f90800..a7199887103 100644 --- a/reactos/lib/fast486/opcodes.c +++ b/reactos/lib/fast486/opcodes.c @@ -4630,14 +4630,14 @@ FAST486_OPCODE_HANDLER(Fast486OpcodeInt) switch (Opcode) { - case 0xCC: + case 0xCC: // INT 3 { /* This is the INT3 instruction */ IntNum = 3; break; } - case 0xCD: + case 0xCD: // INT xx { /* Fetch the interrupt number */ if (!Fast486FetchByte(State, &IntNum)) @@ -4649,7 +4649,7 @@ FAST486_OPCODE_HANDLER(Fast486OpcodeInt) break; } - case 0xCE: + case 0xCE: // INTO { /* Don't do anything if OF is cleared */ if (!State->Flags.Of) return TRUE;