statement/SYS                                                   statement/SYS
 
 NAME
     SYS -- Executes a machine language program
 
 ABBREVIATION
     s <shift> Y

 SYNOPSIS
     SYS <address>

 FUNCTION
     The word SYS is followed by a decimal number or numeric variable in the 
     range 0 to 65535. The program begins executing the machine language 
     program starting at that memory location. This is similar to the USR 
     function, but does not pass a parameter.
 
 INPUTS
     <address> - memory address (0-65535)
 
 RESULT
     Begins executing a machine language program from the given memory 
     location.

 EXAMPLES
     None
 
 NOTES
     None
 
 BUGS
     None
 
 SEE ALSO
     MONITOR
     USR()