Command: CALL-Call Procedure
Arguments: DEST (target): Adress of the first command of the called procedure; can be an immediate value, a general purpose register or a memory location
Usage: CALL DEST
Effects: Actual value of the instruction counter is saved on the stack and the instruction counter is set to the target adresse in order to go on with the called procedure.
Flags to be set: none
Misc: Usually there is a RET command in the procedure to return to the command after the call command.