Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 280 Bytes

README.md

File metadata and controls

21 lines (17 loc) · 280 Bytes

bye

step 0 install nasm

 sudo pacman -S nasm

step 1 compile the nasm file

 nasm -f elf64 goodbye_world.nasm -o goodbye_world.o

step 2 link

ld goodbye_world.o -o goodbye_world

step 3 run the script :D

./goodbye_world