'This program is a very simple demonstration of the debug directive. 'It sets up a for-next loop to count from 1 to 10. 'The debug directive sends the value of b0 (1 to 10) back to the PC for 'viewing. 'This can be useful when debugging programs. for b0 = 1 to 10 debug b0 next b0