
Extremely Active Member
     
Group: Admins
Posts: 2303
Member No.: 160
Joined: 22-June 04

|
there are different ways. most preferable is using of local labels. some labels become local automatically (for masm inside proc/endp) etc. there is also "anonimous" label: "@@", but using of it may appear tricky sometimes.
ja @F ; to nearest @@ forward ... ... @@: ... ... jmp @B ; to nearest @@ backward
finally, you may use unic names with meaningful prefixes:
my_proc: ... my_proc_loop: ... jz my_proc_done ... jmp my_proc_loop ... my_proc_done: ... ret
|