◄Up► ◄Contents► ◄Index► ◄Back► ──P-Code Instructions─────────────────────────────────────────────────────── Syntax SttW /* Store top of stack in t register. */ Description Stores the value at the top of the stack into the p-code temporary register t. Pseudocode equivalent: t = Pop(); Doing a right shift to a long variable type generates this instruction. Temporary results are stored and then loaded back onto the stack to complete the shift: lTest1 = lTest2 >> 1 /* generates SttW */ -♦-