• 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
    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 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...
  • "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...
  • Goto Label xxx in other file...
    Dear all, I have a question about jumping to some specific label in other file(in Keil C51 project) Ex. In file A there is one label named _xxx . In file B can we use goto _xxx ? (maybe...