NASM - The Netwide Assembler

NASM Forum => Using NASM => Topic started by: nobody on January 23, 2008, 04:37:41 PM

Title: dup (?)
Post by: nobody on January 23, 2008, 04:37:41 PM
how can I make unitialised data:
         buffer: db 44 dup (?)
assemble corectly. thx
Title: Re: dup (?)
Post by: nobody on January 23, 2008, 04:43:15 PM
buffer: resb 64        ; reserve 64 bytes
never mind :)