FASM "virtual" assembler directive
- From: "Philippe Leite" <spamtrap@xxxxxxxxxx>
- Date: 24 Apr 2006 04:22:57 -0700
Hi listers,
There is a nice directive in FASM named "virtual" that works as the
following example:
virtual at ebx
label1 dw ?
label2 dd ?
end virtual
mov ax,[label1] will be assembled mov ax,[ebx]
mov ecx,[label2] will be assembled mov ecx,[ebx+2]
Is there such a thing in NASM ???
Thanks
Philippe Leite
.
- Follow-Ups:
- Re: [Clax86list] FASM "virtual" assembler directive
- From: Charles A. Crayne
- Re: FASM "virtual" assembler directive
- From: Frank Kotler
- Re: [Clax86list] FASM "virtual" assembler directive
- Prev by Date: Re: MASM question...
- Next by Date: Re: prefetch seem don't work ?!
- Previous by thread: MASM question...
- Next by thread: Re: FASM "virtual" assembler directive
- Index(es):
Relevant Pages
|