◄Up► ◄Contents► ◄Index► ◄Back► ──P-Code Instructions─────────────────────────────────────────────────────── Syntax Ldt<t> See: ◄P-Code Data Types► /* Load t register item of type <t> onto the stack. */ Description Loads the value of the p-code temporary register t onto the stack. Pseudocode equivalent: Push<t>(t); Post-incrementing a pointer is one way to generate this instruction: int w1, w2; w2 = w1++; /* generates LdtW */ -♦-