Skip to content

Latest commit

 

History

History
15 lines (8 loc) · 205 Bytes

File metadata and controls

15 lines (8 loc) · 205 Bytes

asm_snipets

Assembly Language Snipets (NASM/Intel Syntax)

How to compile on Linux using the Netwide Assembler:

$ nasm -f elf hello.asm

$ ld -s -o hello hello.o

How to run:

$ ./hello