PUSH ==== Function -------- **PUSH** pushes a 16 bit value onto HUNTER's machine code subroutine linkage stack which is generally used with machine code :doc:`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 :doc:`../basic-programming/machine-code-calls`. :doc:`pop` is the reverse of PUSH.