From fa85aa9e83f06199daf53e6792f1065fcea08acf Mon Sep 17 00:00:00 2001 From: tildearrow Date: Fri, 18 Apr 2025 14:35:30 -0500 Subject: [PATCH] Makefile --- src/asm/6502/nes/Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/asm/6502/nes/Makefile diff --git a/src/asm/6502/nes/Makefile b/src/asm/6502/nes/Makefile new file mode 100644 index 000000000..647c81479 --- /dev/null +++ b/src/asm/6502/nes/Makefile @@ -0,0 +1,8 @@ +all: test.nes +test.nes: test.o test.ini + wlalink -v test.ini test.nes +test.o: test.s nes.i chr.bin ../stream.s + wla-6502 -o test.o test.s + +clean: + rm test.nes test.o