NES porting started

This commit is contained in:
Luxferre
2026-01-08 17:22:53 +02:00
parent b670ddf233
commit fa2bfd4cf7
3 changed files with 514 additions and 1 deletions
+9
View File
@@ -0,0 +1,9 @@
CFILES = nescoundrel.c
OUTFILE = scoundrel.nes
$(OUTFILE): $(CFILES)
cl65 -t nes -O -Os $(CFILES) -o $(OUTFILE)
clean:
rm -f $(OUTFILE) *.o