
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 …
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 …
Programming with NASM
May 17, 2025 · Programming with NASMPages: [1] 2 3 ... 52Pages: [1] 2 3 ... 52
NASM tutorial for Windows (7+), console and windows
Feb 25, 2022 · Hello everybody I'm new to NASM and need a good tutorial to start programming on Windows 7. I've just installed NASM for Win64 and the linker GoLink (mentioned in a few …
Have some linking errors with ld: "relocation truncated to fit"
Nov 19, 2012 · Have some linking errors with ld: "relocation truncated to fit" mov al, [a] ; "[contents]" of a (and similar instances) Using the int 80h interface, and the 32-bit sys call …
[solved] NASM - Help with tutorial for Hello World
Jun 10, 2022 · Re: NASM - Help with tutorial for Hello World « Reply #1 on: June 09, 2022, 10:12:14 PM » Hi forevernoob, Welcome to the forum. The problem is a simple one. The code …
how to swtich into protected mode/32bit and then back to real …
Jul 12, 2023 · hi I am writing a monitor able to load and start a Linux kernel. The application is started by the BIOS at 0x7c0 in real-mode and it switches into protected mode. The whole …
Division - Netwide Assembler
Mar 25, 2011 · I'm simply trying to divide in NASM and output the result. The code I have:
Disassembling and then reassembling a windows exe file with nasm?
Sep 3, 2011 · Disassembling and then reassembling a windows exe file with nasm?Some years ago I played around with a disassembler called "Borg", or something similar to that. Probably …
[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 …