Upload files to "build"

This commit is contained in:
pathetic 2025-05-12 23:01:04 +02:00
commit e2d498ecc4

7
build/build.sh Normal file
View file

@ -0,0 +1,7 @@
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"