
NASM - The Netwide Assembler - Index
Dec 5, 2024 · NASM - The Netwide Assembler - Index15739 Posts in 3784 Topics by 3934 Members. Latest Member: ToyBoy Latest Post: "Re: Snake game for MS-DO..." ( June 16, 2025, 02:23:07 PM ) …
Nasm source does not work - Netwide Assembler
Aug 27, 2014 · Nasm assembles your source fine but doesn't assemble after you rebuild it with changes you've made. Without further information the source of the problem would appear to exist between …
Aligning in .bss section - Netwide Assembler
Jan 4, 2013 · An "%include" is pretty much just a cut-and-paste. The included file is passed to the "assembler" routine as if it were a part of your original source, resulting in just one .bss section. If you …
Command 'Clear' (Clear the gnu/linux console)
Aug 20, 2020 · Command 'Clear' (Clear the gnu/linux console)Thus, this is a program able to invoke the gnu/linux command 'Clear' to clear the console. It's not necessary to run it as if, you could use the …
Is there any one there? - forum.nasm.us
Dec 3, 2004 · Is there any way to get the label offset into a constant?.
Help with writing custom C type string functions using NASM
Sep 6, 2017 · For a class assignment I must write custom versions of C type functions such as: strlen, strcmp, gets, puts, write, open, close, exit From what I understand, this requires using the cdecl …
Help Needed - Netwide Assembler
Jun 3, 2012 · Nasm complains about "operation size not specified" 'cause it doesn't know whether to move a byte (8 bits), a word (16 bits), or a dword (32 bits) into the address pointed to by ecx.
How to create dynamic array - Netwide Assembler
Jul 6, 2013 · How to create dynamic array ?Seems to me "dynamic array" would imply memory allocation, which would be an OS function. What OS? I suppose could use C library functions... try to …
Creating my First Program - Netwide Assembler
Nov 7, 2016 · I've been lurking the forum for a few days filling myself up with notes trying to successfully create my first program in NASM, but with a few self imposed stipulations (until I'm ready to move …
MACRO to tell what version/platform of NASM?
Nov 30, 2006 · Hi. I'm wondering if there is any sort of predefined MACRO I can check for to figure out what platform of NASM is being used? For example, can I use something like: %ifdef WIN32 to …