◄Up► ◄Contents► ◄Index► ◄Back► ──P-Code Instructions─────────────────────────────────────────────────────── Syntax Stinp<t><n> /* Store indirect near and preserve item. */ Possible Instructions StinpB0 See: ◄P-Code Data Types► ◄P-Code Operands► Description Stores an indirect near the top value on the stack without popping the value. This instruction is used to store through a pointer in situations where the value has to be left on the stack. Pseudocode equivalent: p<t> = PopW() + alignof(<t>) * n; *p<t> = Top<t>(); -♦-