Table of Contents

Assembly - The Netwide Assembler (nasm)

About

nasm is an assembler that will compile assembly code in machine instruction.

Syntax

Assembly - Grammar (Syntax).

; Instruction Destination, Source
; example
mov ax, 9
; move/load the decimal value 9 into the ax register

More see https://en.wikibooks.org/wiki/X86_Assembly/NASM_Syntax

Utility

nasm -f format script.asm -o script

where:

Script

bits 32

Documentation / Reference