/i386-Assembly-Language

This GitHub repository contains a collection of programs and code snippets written in i386 assembly language.

Primary LanguageAssembly

Assembly

64 Bit

nasm -f elf64 <file>.asm

ld -o name <file>.o

./name

32 Bit

nasm -f elf32 <file>.asm

ld -m elf_i386 -o <file>.exe <file>.o

./name
nasm -f elf <file>.asm

e ld -m elf_i386 -s -o <file> <file>.o

./<file>