16 lines
468 B
Plaintext
16 lines
468 B
Plaintext
1111nn0111111101
|
|
Available only when PR=0
|
|
sr ← ZeroExtend32(SR);
|
|
fps ← ZeroExtend32(FPSCR);
|
|
xmtrx ← FloatValueMatrix32(XMTRX);
|
|
op1 ← FloatValueVector32(FV4n);
|
|
IF (FpuIsDisabled(sr) AND IsDelaySlot())
|
|
THROW SLOTFPUDIS;
|
|
IF (FpuIsDisabled(sr))
|
|
THROW FPUDIS;
|
|
op1, fps ← FTRV_S(xmtrx, op1, fps);
|
|
IF (((FpuEnableV(fps) OR FpuEnableI(fps)) OR FpuEnableO(fps)) OR FpuEnableU(fps))
|
|
THROW FPUEXC, fps;
|
|
FV4n ← FloatRegisterVector32(op1);
|
|
FPSCR ← ZeroExtend32(fps);
|