├── .gitignore ├── README.md ├── default.spr ├── demo ├── BananaManSTD.nxi ├── BayMaxSTD.nxi ├── BerkSTD.nxi ├── BlackSTD.nxi ├── BugsSTD.nxi ├── CalvinSTD.nxi ├── CaptainCavemanSTD.nxi ├── DaggettSTD.nxi ├── DangerMouseSTD.nxi ├── EnzoSTD.nxi ├── LemmingSTD.nxi ├── LupinSTD.nxi ├── MarvinSTD.nxi ├── TazSTD.nxi ├── TiggerSTD.nxi ├── TinTinSTD.nxi ├── VikingSTD.nxi ├── WeBareBearsSTD.nxi └── WoodyWoodpeckerSTD.nxi ├── dev └── plugins │ ├── bank.bin │ ├── docs │ ├── api.txt │ └── errno.txt │ ├── example │ └── invertScreen.asm │ ├── incs │ ├── plotit.asm │ └── plotit_API.h │ ├── make.sh │ ├── plugintest │ ├── ar.bat │ ├── invertScreen.asm │ ├── invertScreen.plg │ ├── invertScreen.sna │ ├── readme.txt │ └── staticLoader.asm │ ├── test.plotit_plugin_header │ ├── test.plp │ └── util │ └── blank16k.bin ├── docs ├── CHANGELOG.md ├── CREDITS.md ├── RELEASE_NOTES.md └── SHORTCUTS.md ├── plotit.nex ├── stamps ├── default.spr └── user.spr └── user.spr /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.zip 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/README.md -------------------------------------------------------------------------------- /default.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/default.spr -------------------------------------------------------------------------------- /demo/BananaManSTD.nxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/demo/BananaManSTD.nxi -------------------------------------------------------------------------------- /demo/BayMaxSTD.nxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/demo/BayMaxSTD.nxi -------------------------------------------------------------------------------- /demo/BerkSTD.nxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/demo/BerkSTD.nxi -------------------------------------------------------------------------------- /demo/BlackSTD.nxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/demo/BlackSTD.nxi -------------------------------------------------------------------------------- /demo/BugsSTD.nxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/demo/BugsSTD.nxi -------------------------------------------------------------------------------- /demo/CalvinSTD.nxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/demo/CalvinSTD.nxi -------------------------------------------------------------------------------- /demo/CaptainCavemanSTD.nxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/demo/CaptainCavemanSTD.nxi -------------------------------------------------------------------------------- /demo/DaggettSTD.nxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/demo/DaggettSTD.nxi -------------------------------------------------------------------------------- /demo/DangerMouseSTD.nxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/demo/DangerMouseSTD.nxi -------------------------------------------------------------------------------- /demo/EnzoSTD.nxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/demo/EnzoSTD.nxi -------------------------------------------------------------------------------- /demo/LemmingSTD.nxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/demo/LemmingSTD.nxi -------------------------------------------------------------------------------- /demo/LupinSTD.nxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/demo/LupinSTD.nxi -------------------------------------------------------------------------------- /demo/MarvinSTD.nxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/demo/MarvinSTD.nxi -------------------------------------------------------------------------------- /demo/TazSTD.nxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/demo/TazSTD.nxi -------------------------------------------------------------------------------- /demo/TiggerSTD.nxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/demo/TiggerSTD.nxi -------------------------------------------------------------------------------- /demo/TinTinSTD.nxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/demo/TinTinSTD.nxi -------------------------------------------------------------------------------- /demo/VikingSTD.nxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/demo/VikingSTD.nxi -------------------------------------------------------------------------------- /demo/WeBareBearsSTD.nxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/demo/WeBareBearsSTD.nxi -------------------------------------------------------------------------------- /demo/WoodyWoodpeckerSTD.nxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/demo/WoodyWoodpeckerSTD.nxi -------------------------------------------------------------------------------- /dev/plugins/bank.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/dev/plugins/bank.bin -------------------------------------------------------------------------------- /dev/plugins/docs/api.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/dev/plugins/docs/api.txt -------------------------------------------------------------------------------- /dev/plugins/docs/errno.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/dev/plugins/docs/errno.txt -------------------------------------------------------------------------------- /dev/plugins/example/invertScreen.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/dev/plugins/example/invertScreen.asm -------------------------------------------------------------------------------- /dev/plugins/incs/plotit.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/dev/plugins/incs/plotit.asm -------------------------------------------------------------------------------- /dev/plugins/incs/plotit_API.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/dev/plugins/incs/plotit_API.h -------------------------------------------------------------------------------- /dev/plugins/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/dev/plugins/make.sh -------------------------------------------------------------------------------- /dev/plugins/plugintest/ar.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/dev/plugins/plugintest/ar.bat -------------------------------------------------------------------------------- /dev/plugins/plugintest/invertScreen.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/dev/plugins/plugintest/invertScreen.asm -------------------------------------------------------------------------------- /dev/plugins/plugintest/invertScreen.plg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/dev/plugins/plugintest/invertScreen.plg -------------------------------------------------------------------------------- /dev/plugins/plugintest/invertScreen.sna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/dev/plugins/plugintest/invertScreen.sna -------------------------------------------------------------------------------- /dev/plugins/plugintest/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/dev/plugins/plugintest/readme.txt -------------------------------------------------------------------------------- /dev/plugins/plugintest/staticLoader.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/dev/plugins/plugintest/staticLoader.asm -------------------------------------------------------------------------------- /dev/plugins/test.plotit_plugin_header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/dev/plugins/test.plotit_plugin_header -------------------------------------------------------------------------------- /dev/plugins/test.plp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/dev/plugins/test.plp -------------------------------------------------------------------------------- /dev/plugins/util/blank16k.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/dev/plugins/util/blank16k.bin -------------------------------------------------------------------------------- /docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/docs/CHANGELOG.md -------------------------------------------------------------------------------- /docs/CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/docs/CREDITS.md -------------------------------------------------------------------------------- /docs/RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/docs/RELEASE_NOTES.md -------------------------------------------------------------------------------- /docs/SHORTCUTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/docs/SHORTCUTS.md -------------------------------------------------------------------------------- /plotit.nex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/plotit.nex -------------------------------------------------------------------------------- /stamps/default.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/stamps/default.spr -------------------------------------------------------------------------------- /stamps/user.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/stamps/user.spr -------------------------------------------------------------------------------- /user.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StalePixels/PLOTIT/HEAD/user.spr --------------------------------------------------------------------------------