Milestone 1 : Boot a rom that does nothing

This commit is contained in:
2012-11-02 22:17:59 -04:00
commit 7b5d0c76e8
2 changed files with 136 additions and 0 deletions

12
Makefile Normal file
View File

@@ -0,0 +1,12 @@
all: nesgame.nes
nesgame.nes : nesgame.S
NESASM3 $<
.PHONY: test
test:
fceux nesgame.nes
.PHONY: clean
clean:
rm *nes
rm *fns