Got out of the scratch pad interrupt

BrendanP

Senior Member
Is there any reason why I should experience problems with goto routines that take the program outside of the scracth pad interrupt as long as the program eventually goes back to the scratch pad for the return command?

Is it better to stick with gosub routines within the interrupt routine?

I've got something odd going on that I can't pin down, trying eliminate sources.
 

Jeremy Leach

Senior Member
IMHO I think that the only important thing is the return and as long as you eventually hit a return you can jump around all over the place if you want to. Seems the logical answer anyway. I don't think there's anything special about an interrupt routine except how it is called.
 
Top