◄Up► ◄Contents► ◄Index► ◄Back► ──P-Code Instructions─────────────────────────────────────────────────────── Syntax Stif<t><n> /* Store value indirect through far pointer */ Possible Instructions StifBb, StifWb, StifLb, StifD, StifR, StifT See: ◄P-Code Data Types► ◄P-Code Operands► Description Stores an indirect word value. The top-of-stack element is assumed to be a long pointer and is taken off of the stack. Pseudocode equivalent: lpw = (int far *)LongPop() + S; *lpw = Pop(); This instruction is generated as follows: w = 5; *lpw = w; /* generates StifWb */ -♦-