├── .gitignore ├── LICENSE ├── README.md ├── azure-pipelines.yml └── game ├── ascii.chr ├── pipeline-yychr.nam ├── pipeline.atr ├── pipeline.pal ├── pipeline1.nam ├── pipeline2.nam ├── pipeline3.nam ├── pipeline4.nam ├── test.asm └── test.nes /.gitignore: -------------------------------------------------------------------------------- 1 | *.fns 2 | *.bak 3 | *.nes.deb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxlnt/nes-pipeline/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxlnt/nes-pipeline/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxlnt/nes-pipeline/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /game/ascii.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxlnt/nes-pipeline/HEAD/game/ascii.chr -------------------------------------------------------------------------------- /game/pipeline-yychr.nam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxlnt/nes-pipeline/HEAD/game/pipeline-yychr.nam -------------------------------------------------------------------------------- /game/pipeline.atr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxlnt/nes-pipeline/HEAD/game/pipeline.atr -------------------------------------------------------------------------------- /game/pipeline.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxlnt/nes-pipeline/HEAD/game/pipeline.pal -------------------------------------------------------------------------------- /game/pipeline1.nam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxlnt/nes-pipeline/HEAD/game/pipeline1.nam -------------------------------------------------------------------------------- /game/pipeline2.nam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxlnt/nes-pipeline/HEAD/game/pipeline2.nam -------------------------------------------------------------------------------- /game/pipeline3.nam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxlnt/nes-pipeline/HEAD/game/pipeline3.nam -------------------------------------------------------------------------------- /game/pipeline4.nam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxlnt/nes-pipeline/HEAD/game/pipeline4.nam -------------------------------------------------------------------------------- /game/test.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxlnt/nes-pipeline/HEAD/game/test.asm -------------------------------------------------------------------------------- /game/test.nes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxlnt/nes-pipeline/HEAD/game/test.nes --------------------------------------------------------------------------------