◄Up► ◄Contents► ◄Index► ◄Back► ──P-Code Instructions─────────────────────────────────────────────────────── Syntax MulWWL /* Multiply top two words and push long result */ Description Pops two words from the stack, multiplies them, and pushes a long result onto the stack. Pseudocode equivalent: w2 = PopW(); w1 = PopW(); l = w1 * w2; PushL(l); This instruction is generated as follows: int w1, w2; long l; l = ((long)w1 * (long)w2); /* generates MulWWL */ -♦-