Upload files to "/"

This commit is contained in:
2026-03-25 19:30:25 +00:00
parent a8ca687718
commit df30dc0b78
2 changed files with 35 additions and 0 deletions

8
build Normal file
View File

@@ -0,0 +1,8 @@
#!/bin/bash
echo "building wcc"
# only ghosts in the shell here
as src/*.asm -o obj/wcc.o
ld -s obj/wcc.o -o wcc
echo "done"