
Basic Win32 API Window - Netwide Assembler
Jul 23, 2013 · NASM is the coolest thing i have ever found. Everytime im opening, starting to code with NASM, i feel like im in front of some sort of powerfull and dreadfull crafting table, and only thing, that …
Need help in dealing with "undefined reference to `_printf'" error
Sep 12, 2020 · Need help in dealing with "undefined reference to `_printf'" error;;assemble with > nasm -fwin64 hello.asm ;; link with > gcc -m64 -mconsole hello.obj -o hello.exe global main extern printf …
NASM or YASM in the modern era (or something else)
Feb 3, 2024 · I don't know yasm, but I can tell you that nasm is constantly in development, with new instruction sets being added pretty much as soon as they are released. We have an Intel developer …
get user input and display it to the screen help
Jun 1, 2012 · NASM - The Netwide Assembler » NASM Forum » Programming with NASM » get user input and display it to the screen help « previous next » Print Pages: [1]
[solved] NASM - Help with tutorial for Hello World
Jun 10, 2022 · Having issues following a NASM 64-bit "hello world" tutorial Beginning x64 Assembly Programming I am not new to programming, but I am new to assembly (and I am open to any other …
How To do a loop in NASM? - Netwide Assembler
Aug 12, 2021 · hello everyone I'm quite new to NASM and assembly in general. I've learned how to do the simple stuff such as adding and subtracting 2 numbers. I've been trying to write a program that …
Error -'nasm' is not recognized as an internal or external command ...
Jul 5, 2017 · Welcome to the Forum. The problem you have encountered is not, strictly speaking a "Nasm problem" but an "operating system problem". It appears that Nasm is not on your "path". The …
Using LEA - load effective address - Netwide Assembler
Apr 25, 2012 · "lea" is kind of a funny instruction. It calculates an "effective address" - memory - but it doesn't really "do" anything with the memory, it just does arithmetic. Still, it requires a memory …
[Solved] short jump with relative offset - Netwide Assembler
May 9, 2019 · In optimized compilation, NASM will try to select shorter instructions, so your conditional jump will use a signed byte offset. To use an explicit value is dangerous because of optimization. But …
64-bit assembly - some basic functionality, and Windows and c …
Feb 26, 2013 · Greetings to all. This is about a simple example I made, showing how to use 64-bit assembly language to perform some basic but useful functions such as: - Reading the command line …