• Goto
    Hi Can I use GOTO statement in interrupt routine? Example code is: #include <REG51.H> void ex0_isr (void) interrupt 0 /*external interrupt routine*/ { goto NEXT; } void main(void...
  • goto to a pointer
    Hello NG, I've got the following problem: I want to store the current position in a interrupt routine and leave it. By entering the routine after the next interrupt, I want to jump to this stored position...
  • goto fail and the ARMCC Compiler
    I can't imagine anyone reading this posting hasn't already read about the Apple " goto fail " bug in SSL. My reaction was one of incredulity; I really couldn't believe this code could have got into the...
  • "goto reference" extremely slow
    I have written a really huge application (500k bin-file) for the C167. When I try to find the definition of any variable by clicking on it with the right mouse button uVision2 takes up to eighty (!) seconds...
  • error in label
    i am makinga 4x4 keypad interacing program where da character pressed has to be sent serially to anothr board.. checking all 4 coulumns for each row, i gave a an exit command jb col4 exit where...