
Error message on windows: fatal: unable to open output file (?)
Nov 20, 2020 · Hello, I am interested in assembly programs. I want to make simple boot.asm file and run it in qemu. I made asm file run nasm in order to compile to bin on win10x64 with …
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 …
Opengl/OpenAL game 100% NASM x86_64 Assembly
Jun 29, 2023 · Looks like -felf64 already sets NASM to 64-bit mode, anyway is a good suggestion to use BITS 64 to ensure the mode independent of the command line used. Not quite. bits 64 …
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 …
Example Code - Netwide Assembler
Jun 16, 2025 · Example CodePages: [1] 2 3 13Example Code
NASM for Windows 'ld' comman
Mar 19, 2006 · (Nasm's "-f coff" is a different kind of COFF) There *is* a port of the linker "ld" to Windows, but it sounds like you haven't got it - or haven't got it installed right. Maybe available …
error message "unable to open input file" - Netwide Assembler
Apr 20, 2006 · When I try to compile firstp.asm with nasm firstp.asm -f bin -o firstp.com at the command window I get the same message ("unable to open input file"). Could you help me?
Strange warning: Dword data exceeds bounds
Jul 23, 2011 · But in this case NASM doesn't warn about probable data loss. Why? To be consistent, both cases (with and without inversion) should work identically. But removing …
Working with command line arguments - Netwide Assembler
Sep 10, 2010 · Working with command line arguments; nasm -f elf32 argc.asm ; ld -o argc argc.o global _start section .text _start: pop ecx ; argc in ecx add ecx, '0' ; convert number to …
How to create dynamic array - Netwide Assembler
Jul 6, 2013 · Hello I try to create an dynamic array but i couldn't. Please Give an example for it Thanks for helps