Top "Nasm" questions

Nasm is the Netwide Assembler, an open-source x86/x64 assembler.

Relocation Truncated to Fit error in NASM x86_64

I'm using a computer with an Intel Core 2 CPU and 2GB of RAM. My OS is Ubuntu 9.04. When I try …

linker nasm relocation truncated
x86 NASM 'org' directive meaning

I am following this tutorial as a first foray into bootloader/OS development for x86 using NASM: http://joelgompert.com/…

assembly x86 nasm bootloader
Possibility of loading/executing ELF files on OSX

I'm just curious as to the possibility of loading and executing elf files on OSX. I know the standard executable …

macos operating-system nasm
How to compile using nasm on MacOSX

I am trying to compile and link my first program on Assembler. I try to compile the following code: ; %include "…

assembly nasm
Creating a bootable ISO image with custom bootloader

I am trying to convert a bootloader I wrote in Assembly Language to an ISO image file. The following is …

linux assembly nasm osdev dd
How to read a NASM Assembly program .lst listing file

I wrote a NASM program and created a listing file from it using nasm -f elf -l rs.lst rs.…

assembly x86 nasm listings
How to generate assembly code with gcc that can be compiled with nasm

I am trying to learn assembly language as a hobby and I frequently use gcc -S to produce assembly output. …

gcc assembly nasm
EBP, ESP and stack frame in assembly

I have a few questions about EBP, ESP and stack frame in following code. Why did we subtract 28 from esp? …

assembly x86 nasm calling-convention stack-frame
How do i read single character input from keyboard using nasm (assembly) under ubuntu?

I'm using nasm under ubuntu. By the way i need to get single input character from user's keyboard (like when …

linux assembly character nasm tty
NASM is pure assembly, but MASM is high level Assembly?

I'm learning assembly, motivation being able to reverse engineer. I'm trying to find the assembler I should begin with, so …

assembly x86 reverse-engineering nasm masm