My sequence is advanced by each cutom function via an IF THEN ELSE statement (shown below). Each completion of a test sets the CTRPV to the next sequence for the next test, hence, I cannot use a clock pulse for advancement. However, I am not sure how I could use a timer though?
IF TESTBIT (INPUT[1],1) THEN
IF INPUT[1]+INPUT[2]+INPUT[3]+INPUT[4]+INPUT[5] & &HFFFD THEN 'CHECK IF ANY OTHER INPUT #1 TO #16) IS ON
CALL 2:
SETLCD 2,1,D$+"A3 &"
CALL 8:
ELSE
IF CTRPV[1]=1 THEN
CTRPV[1]=2
SETLCD 0,0,CHR$(1)
ELSE
CTRPV[3]=10
SETLCD 0,0,CHR$(1)
ENDIF
ENDIF
ENDIF