; ; PICAXE test routine ; ; to use: choose picaxe|run. Once the program is downloaded it will bring up the ; debug window. It will show waiting and then begin to run. b0 will count up ; and the number of debugs will count up. If you press the reset button ; it will stop while pressed. when you release the reset button the debugs will ; continue from where they left off but b0 will start again from 0 ; copyright 2006, singlespoon ministries. Released under GPL v2 main: let b0 = b0 + 1 debug b0 goto main