13 lines
288 B
Plaintext
13 lines
288 B
Plaintext
0100mmmm01101010
|
|
sr ← ZeroExtend32(SR);
|
|
op1 ← SignExtend32(Rm);
|
|
IF (FpuIsDisabled(sr) AND IsDelaySlot())
|
|
THROW SLOTFPUDIS;
|
|
IF (FpuIsDisabled(sr))
|
|
THROW FPUDIS;
|
|
fps, pr, sz, fr ← UnpackFPSCR(op1);
|
|
FPSCR ← ZeroExtend32(fps);
|
|
SR.PR ← Bit(pr);
|
|
SR.SZ ← Bit(sz);
|
|
SR.FR ← Bit(fr);
|