WAIT
PURPOSE
This command provides a simple way to suspend program execution for a given number of milliseconds.
WAIT f/c/e Required - The number of milliseconds that should be paused.
COMMENTS
A simple way to suspend program execution without having to using more lines of code than necessary.
EXAMPLE
define seconds_n Type I size 3
start:
seconds_n = 4000 // will wait 4000 milliseconds.
Wait seconds_n
ret