├── .gitignore ├── Makefile ├── README.md ├── audio.a65 ├── compile.sh ├── drmario.a65 ├── drmario.cfg ├── drmario.nes.md5 ├── drmario_a.a65 ├── drmario_a.nes.md5 ├── macros.a65 └── rom32k.cfg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhuffman/drmario/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhuffman/drmario/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhuffman/drmario/HEAD/README.md -------------------------------------------------------------------------------- /audio.a65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhuffman/drmario/HEAD/audio.a65 -------------------------------------------------------------------------------- /compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhuffman/drmario/HEAD/compile.sh -------------------------------------------------------------------------------- /drmario.a65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhuffman/drmario/HEAD/drmario.a65 -------------------------------------------------------------------------------- /drmario.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhuffman/drmario/HEAD/drmario.cfg -------------------------------------------------------------------------------- /drmario.nes.md5: -------------------------------------------------------------------------------- 1 | d3ec44424b5ac1a4dc77709829f721c9 drmario.nes 2 | -------------------------------------------------------------------------------- /drmario_a.a65: -------------------------------------------------------------------------------- 1 | REV_A = 1 2 | .include "drmario.a65" 3 | -------------------------------------------------------------------------------- /drmario_a.nes.md5: -------------------------------------------------------------------------------- 1 | 8181d696756578fc92e6c4c86da01904 drmario_a.nes 2 | -------------------------------------------------------------------------------- /macros.a65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhuffman/drmario/HEAD/macros.a65 -------------------------------------------------------------------------------- /rom32k.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhuffman/drmario/HEAD/rom32k.cfg --------------------------------------------------------------------------------