Re: [Q] What is @@:
From: hutch-- (spamtrap_at_crayne.org)
Date: 10/15/04
- Next message: Florian Liebig : "Re: Serial Port Baud Rates faster than 115200 on PC"
- Previous message: Robert Redelmeier: "Re: Problem with FPU code..."
- In reply to: Florian Liebig : "Re: [Q] What is @@:"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Thu, 14 Oct 2004 22:54:56 +0000 (UTC)
JC,
It is as Brian said, a method where labels that don't need meaningful
names can be replaced or written using what is usually called
anonymous labels. The notation is simple enough,
@@:
; asm code
test al, al
jnz @B ; this jumps back to the LAST @@: label
; asm code
cmp eax, 64
je @F ; this jump forward to the NEXT @@: label
; asm code
@@:
Once you are used to using them they save you from endlessly having to
invent new label names within a procedure.
Regards,
hutch at movsd dot com
- Next message: Florian Liebig : "Re: Serial Port Baud Rates faster than 115200 on PC"
- Previous message: Robert Redelmeier: "Re: Problem with FPU code..."
- In reply to: Florian Liebig : "Re: [Q] What is @@:"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|