News:

Masm32 SDK description, downloads and other helpful links
Message to All Guests

Main Menu

Where it's @ or @@

Started by K_F, February 15, 2016, 06:41:35 PM

Previous topic - Next topic

K_F

Trying to remember with regard to the J../Jmp @F, JMP @B instructions.

Wasn't there, somewhere in the masm syntax (or some offshoot of it), where you could jmp 2 or more @'s forward or backwards.

eg:   jmp @@B, jmp @@@F  would jump 2@'s back or 3@'s forward

It would make for nice control structures if we had this.. and help reduce our label counts ?
;)
'Sire, Sire!... the peasants are Revolting !!!'
'Yes, they are.. aren't they....'

hutch--

Doesn't mean its not there but I have never heard of that one.

Vortex

Named labels are more readable :

jmp this_label
.
.
.
this_label:
.
.
.