├── .gitignore ├── .gitmodules ├── LICENSE.md ├── Makefile ├── README.md ├── main.asm ├── map-data.asm ├── nes2header.inc ├── nes_000.cfg ├── tiles.aseprite └── tiles.bmp /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | *.chr 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zorchenhimer/nes-platforming/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zorchenhimer/nes-platforming/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zorchenhimer/nes-platforming/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zorchenhimer/nes-platforming/HEAD/README.md -------------------------------------------------------------------------------- /main.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zorchenhimer/nes-platforming/HEAD/main.asm -------------------------------------------------------------------------------- /map-data.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zorchenhimer/nes-platforming/HEAD/map-data.asm -------------------------------------------------------------------------------- /nes2header.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zorchenhimer/nes-platforming/HEAD/nes2header.inc -------------------------------------------------------------------------------- /nes_000.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zorchenhimer/nes-platforming/HEAD/nes_000.cfg -------------------------------------------------------------------------------- /tiles.aseprite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zorchenhimer/nes-platforming/HEAD/tiles.aseprite -------------------------------------------------------------------------------- /tiles.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zorchenhimer/nes-platforming/HEAD/tiles.bmp --------------------------------------------------------------------------------