Hi.
I have been looking at some assembly code and have found that this comes up rather regularly.
@@:
...
... ; some instructions
...
LOOP @B
Sometimes there is also @F.
I suppose that @B means to go back to the previous label and @F the the "forward/front" label? Am I right? This only works with "@@" labels? If I have label "label1" and used @B, would that work too?
Thanks.