I thought it'd be a good idea to collect the Spasm questions in one topic, as I think I will have quite a few in the future and I don't want to clutter up the forum with just that

So here goes the first one.
QUESTION: Anonymous labels, can I have several in a row? And if so, how?
Example:
- Code: Select all
_:
; code
jr nz, +_
; more code
_:
; even more code
jr z, -_ ; this will go to the one above, but I want it to go to the anonymous label that is (in this case) first..