delay.txt

Warning: if you clip this code into your program, look out for possible html code slipping in.

REM A Vesta Basic INCLUDE file.
REM
REM Any procedures INCLUDED will be stepped over during debugging.
REM This is a useful way to debug delay loops, etc.

SUBROUTINE delay(counts AS INTEGER)
LOCAL i AS INTEGER
   FOR i = 0 TO counts
      REM - No empty loops!
   NEXT i
END