Correctly structured project & implemented required functions

This commit is contained in:
pathetic 2025-05-12 23:10:28 +01:00
parent 50c928f6f6
commit c8cd18d21c
10 changed files with 513 additions and 76 deletions

8
build.sh Normal file
View file

@ -0,0 +1,8 @@
#!/usr/bin/env bash
set -e
nasm -f elf64 ./src/assembly/syscalls.asm -o ./build/syscalls.o
gcc -nostdlib -static ./build/syscalls.o ./src/main.c -o ./build/main
echo "Built: ./build/main"