published GB port source

This commit is contained in:
Luxferre
2026-01-20 10:55:26 +02:00
parent 12a5d39c54
commit c9034b3762
4 changed files with 715 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
CFILES = gbscoundrel.c
OUTFILE = scoundrel.gb
$(OUTFILE): $(CFILES)
zcc +gb -create-app -Os $(CFILES) -o $(OUTFILE)
clean:
rm -f *.gb *.bin *.o