I have about 20 "PAUSE 20" calls in my program. If I change the code to do the pause with a gosub like this...
*******************
gosub time20
time20:
pause 20
return
******************
Do I gain code space in doing the pause with a sub and just calling it each time?
Basically I need to know if the single "pause 20" is longer or shorter than using a "sub" to do the same simple task.
Is the simple call of the pause 20 vs the gosub call + the going and returning really any shorter?
Thanks,
tcbcats
Bookmarks