1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 14:17:36 +00:00

UserspaceEmulator: Fix typos in SoftFPU.[cpp|h]

This commit is contained in:
Hendiadyoin1 2021-07-23 00:53:06 +02:00 committed by Linus Groh
parent 74aba07b70
commit f2eff767a0
2 changed files with 3 additions and 3 deletions

View file

@ -85,7 +85,7 @@ private:
NEAREST = 0b00,
DOWN = 0b01,
UP = 0b10,
TRUNK = 0b11
TRUNC = 0b11
};
void fpu_dump_env()
@ -122,7 +122,7 @@ private:
case FPU_Exception::InvalidOperation:
return "Invalid Operation";
case FPU_Exception::DenormalizedOperand:
return "Denormalized Operant";
return "Denormalized Operand";
case FPU_Exception::ZeroDivide:
return "Divide by Zero";
case FPU_Exception::Overflow: