This repo is to store my code as I learn assembly. This is going to be a dump of stupid "Hello World" programs, at least for the begging. This code is licensed under the ISC license, Copyright (C) 2024 Schizoid Party. === Compiling === as src/first.s -o build/first.o && gcc -o build/first build/first.o -nostdlib -static nasm -f elf64 -o build/hello.o src/x86_64.asm && ld build/hello.o -o build/hello