PUSH

Function

PUSH pushes a 16 bit value onto HUNTER’s machine code subroutine linkage stack which is generally used with machine code CALL’s

Syntax

PUSH variable 1, variable 2, ….variable n.

Examples

PUSH A,B

pushes the integer (16 bit binary) representation of the variables A and B onto the stack.

Remarks

These variables may be accessed or modified by a machine code program. See Machine Code Calls.

POP is the reverse of PUSH.