├── .gitignore ├── Makefile ├── README ├── agame ├── Actors.hs ├── agame.hs ├── background.png └── sprites.png ├── controllertest ├── background.bin ├── controllertest.hs ├── sprites.bin └── sprites.png ├── lib ├── ASM.hs ├── ASM6502.hs ├── Assembler.hs ├── NES.hs └── NES │ ├── ASoundEngine.hs │ ├── Header001.hs │ ├── ImageLoader.hs │ └── Reservations.hs ├── make.pl ├── soundtest └── soundtest.hs └── tool └── MakePl.pm /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quietfanatic/neskell/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quietfanatic/neskell/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | 2 | More info coming "soon". 3 | 4 | -------------------------------------------------------------------------------- /agame/Actors.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quietfanatic/neskell/HEAD/agame/Actors.hs -------------------------------------------------------------------------------- /agame/agame.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quietfanatic/neskell/HEAD/agame/agame.hs -------------------------------------------------------------------------------- /agame/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quietfanatic/neskell/HEAD/agame/background.png -------------------------------------------------------------------------------- /agame/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quietfanatic/neskell/HEAD/agame/sprites.png -------------------------------------------------------------------------------- /controllertest/background.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quietfanatic/neskell/HEAD/controllertest/background.bin -------------------------------------------------------------------------------- /controllertest/controllertest.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quietfanatic/neskell/HEAD/controllertest/controllertest.hs -------------------------------------------------------------------------------- /controllertest/sprites.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quietfanatic/neskell/HEAD/controllertest/sprites.bin -------------------------------------------------------------------------------- /controllertest/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quietfanatic/neskell/HEAD/controllertest/sprites.png -------------------------------------------------------------------------------- /lib/ASM.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quietfanatic/neskell/HEAD/lib/ASM.hs -------------------------------------------------------------------------------- /lib/ASM6502.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quietfanatic/neskell/HEAD/lib/ASM6502.hs -------------------------------------------------------------------------------- /lib/Assembler.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quietfanatic/neskell/HEAD/lib/Assembler.hs -------------------------------------------------------------------------------- /lib/NES.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quietfanatic/neskell/HEAD/lib/NES.hs -------------------------------------------------------------------------------- /lib/NES/ASoundEngine.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quietfanatic/neskell/HEAD/lib/NES/ASoundEngine.hs -------------------------------------------------------------------------------- /lib/NES/Header001.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quietfanatic/neskell/HEAD/lib/NES/Header001.hs -------------------------------------------------------------------------------- /lib/NES/ImageLoader.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quietfanatic/neskell/HEAD/lib/NES/ImageLoader.hs -------------------------------------------------------------------------------- /lib/NES/Reservations.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quietfanatic/neskell/HEAD/lib/NES/Reservations.hs -------------------------------------------------------------------------------- /make.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quietfanatic/neskell/HEAD/make.pl -------------------------------------------------------------------------------- /soundtest/soundtest.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quietfanatic/neskell/HEAD/soundtest/soundtest.hs -------------------------------------------------------------------------------- /tool/MakePl.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quietfanatic/neskell/HEAD/tool/MakePl.pm --------------------------------------------------------------------------------