15 lines
369 B
Plaintext
15 lines
369 B
Plaintext
1111mmmm00111101
|
|
Available only when PR=0
|
|
sr ← ZeroExtend32(SR);
|
|
fps ← ZeroExtend32(FPSCR);
|
|
op1 ← FloatValue32(FRm);
|
|
IF (FpuIsDisabled(sr) AND IsDelaySlot())
|
|
THROW SLOTFPUDIS;
|
|
IF (FpuIsDisabled(sr))
|
|
THROW FPUDIS;
|
|
fpul, fps ← FTRC_SL(op1, fps);
|
|
IF (FpuEnableV(fps) AND FpuCauseV(fps))
|
|
THROW FPUEXC, fps;
|
|
FPSCR ← ZeroExtend32(fps);
|
|
FPUL ← ZeroExtend32(fpul);
|