sh4: fix FIPR and FMOV.S documentation typos

This commit is contained in:
Zack Buhman 2024-04-22 20:41:14 +08:00
parent 5d0735498a
commit 8190f04973
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ IF (FpuIsDisabled(sr) AND IsDelaySlot())
THROW SLOTFPUDIS; THROW SLOTFPUDIS;
IF (FpuIsDisabled(sr)) IF (FpuIsDisabled(sr))
THROW FPUDIS; THROW FPUDIS;
op2[3], fps ← FIPR_S(op1, op2, fps); op2, fps ← FIPR_S(op1, op2, fps);
IF (FpuEnableV(fps) AND FpuCauseV(fps)) IF (FpuEnableV(fps) AND FpuCauseV(fps))
THROW FPUEXC, fps; THROW FPUEXC, fps;
IF ((FpuEnableI(fps) OR FpuEnableO(fps)) OR FpuEnableU(fps)) IF ((FpuEnableI(fps) OR FpuEnableO(fps)) OR FpuEnableU(fps))

View File

@ -9,4 +9,4 @@ IF (FpuIsDisabled(sr))
THROW FPUDIS; THROW FPUDIS;
address ← ZeroExtend32(op1); address ← ZeroExtend32(op1);
op2 ← ReadMemory32(address); op2 ← ReadMemory32(address);
FR2n ← FloatRegister32(op2); FRn ← FloatRegister32(op2);