Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

README.md

Installation

How to install NASM

$ sudo apt install as31 nasm 

How to run

$ nasm -f elf64 hello_world.asm
$ ld -s -o hello_world hello_world.o
$ ./hello_world

How to Uninstall NASM

$ sudo apt remove as31 nasm