Other The MASM label @@ in NASM

[…] Is there anything like the MASM label @@ (with locations @b and @f) in NASM? […]
You realize these are the FreeBSD forums and neither MASM or NASM are FreeBSD projects, right? There are dedicated forums. From the brief description​
Defines a code label recognizable only between label1 and label2, where label1 is either start of code or the previous @@: label, and label2 is either end of code or the next @@: label.
I understand it’s some sort of anonymous local label. Possibly the @@ mechanism can be implemented with some clever context‐sensitive NASM macro.​
 
Back
Top