0
mirror of https://github.com/sampletext32/ParkanPlayground.git synced 2025-06-20 08:18:36 +03:00

Refactored floating point p-handlers with consistent naming convention

This commit is contained in:
bird_egop
2025-04-18 02:31:06 +03:00
parent 2a8cf9534e
commit 18ecf31c46
19 changed files with 455 additions and 251 deletions

View File

@ -34,7 +34,7 @@ public class FcompStHandler : InstructionHandler
var opcodeSecond = Decoder.PeakByte();
// this is a special case of a handler, only handling FCOMP with ST(i)
if (opcodeSecond < 0xD8 || opcodeSecond > 0xDF)
if (opcodeSecond is < 0xD8 or > 0xDF)
return false;
return true;