At 09:30 04/09/99 -0400, Ralph Stickley wrote: >Question: What do the following do ? >---- > goto $+1 > > goto loop >loop: this on eis correct, the others not (as far as i understand it, but i don't use the $ very often... :) >---- > goto $-1 > >loop: > goto loop these are not the same. the $ points to the current instruction, so loop: goto loop would be equal to your last example >---- > goto $ whereas goto $-1 would be loop: goto loop ge