This repository represents the supporting material for the Assembly mini course at shikaan.github.io
sudo apt install nasm
sudo sh -c "wget -q https://shikaan.github.io/sup/install -O- | REPO=shikaan/shmux sh -"
# with shmux
shmux run -- 00-file.asm
# else
nasm -g -f elf64 -o build/00-file.o 00-file.asm
ld -o build/00-file.out build/00-file.o
build/00-file.out