diff --git a/Makefile b/Makefile index 0940262..39fd3f0 100644 --- a/Makefile +++ b/Makefile @@ -40,6 +40,12 @@ builds: make bin mv smb.nes builds/all.nes git checkout -- smb.asm + for file in $$(find patches/ -type f | grep -v jump.patch) ; do \ + patch -i $$file smb.asm; \ + done + make bin + mv smb.nes builds/great.nes + git checkout -- smb.asm push: builds rm smb.asm.orig git add . diff --git a/builds/great.nes b/builds/great.nes new file mode 100644 index 0000000..b821ad1 Binary files /dev/null and b/builds/great.nes differ