diff --git a/sh4/FIPR FVm,FVn b/sh4/FIPR FVm,FVn index c123b31..432dbc5 100644 --- a/sh4/FIPR FVm,FVn +++ b/sh4/FIPR FVm,FVn @@ -8,7 +8,7 @@ IF (FpuIsDisabled(sr) AND IsDelaySlot()) THROW SLOTFPUDIS; IF (FpuIsDisabled(sr)) THROW FPUDIS; -op2[3], fps ← FIPR_S(op1, op2, fps); +op2, fps ← FIPR_S(op1, op2, fps); IF (FpuEnableV(fps) AND FpuCauseV(fps)) THROW FPUEXC, fps; IF ((FpuEnableI(fps) OR FpuEnableO(fps)) OR FpuEnableU(fps)) diff --git a/sh4/FMOV.S @Rm,FRn b/sh4/FMOV.S @Rm,FRn index 3c063af..71bce75 100644 --- a/sh4/FMOV.S @Rm,FRn +++ b/sh4/FMOV.S @Rm,FRn @@ -9,4 +9,4 @@ IF (FpuIsDisabled(sr)) THROW FPUDIS; address ← ZeroExtend32(op1); op2 ← ReadMemory32(address); -FR2n ← FloatRegister32(op2); +FRn ← FloatRegister32(op2);