├── LICENSE ├── MyNlaunchyCXM ├── CLASSIC │ ├── nlaunch.tnc │ ├── nlaunch.tno │ └── nlaunch.tns ├── CLASSIC_TOUCHPAD_FIX_EVT │ ├── nlaunch.tnc │ ├── nlaunch.tno │ └── nlaunch.tns ├── readme.md └── src │ ├── .gitignore │ ├── Makefile │ ├── Makefile.touchpadfixevt │ ├── boot2.h │ ├── buildtnco.c │ ├── firstloader.c │ ├── header.raw │ ├── ldscript │ ├── ndless.c │ ├── nlaunch.c │ ├── nlaunch.h │ ├── patch.c │ ├── patch_other.c │ └── preloader.c ├── README.md ├── nLoader ├── .gitignore ├── CHANGELOG.txt ├── README.txt ├── _Makefile ├── bar.h ├── error.h ├── imageloader.c ├── imageloader.h ├── inject_ndless_loader.c ├── inject_ndless_loader.h ├── ldscript ├── main.c ├── make_exploit_image.sh ├── make_for_emulator.sh ├── make_for_nMaker.sh ├── memcpy.S ├── ndless_loader │ ├── Makefile │ ├── ldscript │ ├── ndless_loader.c │ ├── patchos.c │ └── patchos.h ├── patchboot2.c ├── patchboot2.h ├── screen.c ├── screen.h ├── to_do.txt ├── types.h ├── utils.c └── utils.h ├── tiny_overclock_non_cx ├── mk.sh ├── oc.c └── overclock150.tns └── touchpad_proto_fix ├── A 1 └── installer.tns ├── A 2 └── hwrevfix.tns ├── ndless └── ndless_resources.tns └── src ├── Makefile └── main.c /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/LICENSE -------------------------------------------------------------------------------- /MyNlaunchyCXM/CLASSIC/nlaunch.tnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/MyNlaunchyCXM/CLASSIC/nlaunch.tnc -------------------------------------------------------------------------------- /MyNlaunchyCXM/CLASSIC/nlaunch.tno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/MyNlaunchyCXM/CLASSIC/nlaunch.tno -------------------------------------------------------------------------------- /MyNlaunchyCXM/CLASSIC/nlaunch.tns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/MyNlaunchyCXM/CLASSIC/nlaunch.tns -------------------------------------------------------------------------------- /MyNlaunchyCXM/CLASSIC_TOUCHPAD_FIX_EVT/nlaunch.tnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/MyNlaunchyCXM/CLASSIC_TOUCHPAD_FIX_EVT/nlaunch.tnc -------------------------------------------------------------------------------- /MyNlaunchyCXM/CLASSIC_TOUCHPAD_FIX_EVT/nlaunch.tno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/MyNlaunchyCXM/CLASSIC_TOUCHPAD_FIX_EVT/nlaunch.tno -------------------------------------------------------------------------------- /MyNlaunchyCXM/CLASSIC_TOUCHPAD_FIX_EVT/nlaunch.tns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/MyNlaunchyCXM/CLASSIC_TOUCHPAD_FIX_EVT/nlaunch.tns -------------------------------------------------------------------------------- /MyNlaunchyCXM/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/MyNlaunchyCXM/readme.md -------------------------------------------------------------------------------- /MyNlaunchyCXM/src/.gitignore: -------------------------------------------------------------------------------- 1 | *.tns 2 | -------------------------------------------------------------------------------- /MyNlaunchyCXM/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/MyNlaunchyCXM/src/Makefile -------------------------------------------------------------------------------- /MyNlaunchyCXM/src/Makefile.touchpadfixevt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/MyNlaunchyCXM/src/Makefile.touchpadfixevt -------------------------------------------------------------------------------- /MyNlaunchyCXM/src/boot2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/MyNlaunchyCXM/src/boot2.h -------------------------------------------------------------------------------- /MyNlaunchyCXM/src/buildtnco.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/MyNlaunchyCXM/src/buildtnco.c -------------------------------------------------------------------------------- /MyNlaunchyCXM/src/firstloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/MyNlaunchyCXM/src/firstloader.c -------------------------------------------------------------------------------- /MyNlaunchyCXM/src/header.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/MyNlaunchyCXM/src/header.raw -------------------------------------------------------------------------------- /MyNlaunchyCXM/src/ldscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/MyNlaunchyCXM/src/ldscript -------------------------------------------------------------------------------- /MyNlaunchyCXM/src/ndless.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/MyNlaunchyCXM/src/ndless.c -------------------------------------------------------------------------------- /MyNlaunchyCXM/src/nlaunch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/MyNlaunchyCXM/src/nlaunch.c -------------------------------------------------------------------------------- /MyNlaunchyCXM/src/nlaunch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/MyNlaunchyCXM/src/nlaunch.h -------------------------------------------------------------------------------- /MyNlaunchyCXM/src/patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/MyNlaunchyCXM/src/patch.c -------------------------------------------------------------------------------- /MyNlaunchyCXM/src/patch_other.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/MyNlaunchyCXM/src/patch_other.c -------------------------------------------------------------------------------- /MyNlaunchyCXM/src/preloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/MyNlaunchyCXM/src/preloader.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/README.md -------------------------------------------------------------------------------- /nLoader/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/nLoader/.gitignore -------------------------------------------------------------------------------- /nLoader/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/nLoader/CHANGELOG.txt -------------------------------------------------------------------------------- /nLoader/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/nLoader/README.txt -------------------------------------------------------------------------------- /nLoader/_Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/nLoader/_Makefile -------------------------------------------------------------------------------- /nLoader/bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/nLoader/bar.h -------------------------------------------------------------------------------- /nLoader/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/nLoader/error.h -------------------------------------------------------------------------------- /nLoader/imageloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/nLoader/imageloader.c -------------------------------------------------------------------------------- /nLoader/imageloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/nLoader/imageloader.h -------------------------------------------------------------------------------- /nLoader/inject_ndless_loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/nLoader/inject_ndless_loader.c -------------------------------------------------------------------------------- /nLoader/inject_ndless_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/nLoader/inject_ndless_loader.h -------------------------------------------------------------------------------- /nLoader/ldscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/nLoader/ldscript -------------------------------------------------------------------------------- /nLoader/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/nLoader/main.c -------------------------------------------------------------------------------- /nLoader/make_exploit_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/nLoader/make_exploit_image.sh -------------------------------------------------------------------------------- /nLoader/make_for_emulator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/nLoader/make_for_emulator.sh -------------------------------------------------------------------------------- /nLoader/make_for_nMaker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/nLoader/make_for_nMaker.sh -------------------------------------------------------------------------------- /nLoader/memcpy.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/nLoader/memcpy.S -------------------------------------------------------------------------------- /nLoader/ndless_loader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/nLoader/ndless_loader/Makefile -------------------------------------------------------------------------------- /nLoader/ndless_loader/ldscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/nLoader/ndless_loader/ldscript -------------------------------------------------------------------------------- /nLoader/ndless_loader/ndless_loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/nLoader/ndless_loader/ndless_loader.c -------------------------------------------------------------------------------- /nLoader/ndless_loader/patchos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/nLoader/ndless_loader/patchos.c -------------------------------------------------------------------------------- /nLoader/ndless_loader/patchos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/nLoader/ndless_loader/patchos.h -------------------------------------------------------------------------------- /nLoader/patchboot2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/nLoader/patchboot2.c -------------------------------------------------------------------------------- /nLoader/patchboot2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/nLoader/patchboot2.h -------------------------------------------------------------------------------- /nLoader/screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/nLoader/screen.c -------------------------------------------------------------------------------- /nLoader/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/nLoader/screen.h -------------------------------------------------------------------------------- /nLoader/to_do.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/nLoader/to_do.txt -------------------------------------------------------------------------------- /nLoader/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/nLoader/types.h -------------------------------------------------------------------------------- /nLoader/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/nLoader/utils.c -------------------------------------------------------------------------------- /nLoader/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/nLoader/utils.h -------------------------------------------------------------------------------- /tiny_overclock_non_cx/mk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/tiny_overclock_non_cx/mk.sh -------------------------------------------------------------------------------- /tiny_overclock_non_cx/oc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/tiny_overclock_non_cx/oc.c -------------------------------------------------------------------------------- /tiny_overclock_non_cx/overclock150.tns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/tiny_overclock_non_cx/overclock150.tns -------------------------------------------------------------------------------- /touchpad_proto_fix/A 1/installer.tns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/touchpad_proto_fix/A 1/installer.tns -------------------------------------------------------------------------------- /touchpad_proto_fix/A 2/hwrevfix.tns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/touchpad_proto_fix/A 2/hwrevfix.tns -------------------------------------------------------------------------------- /touchpad_proto_fix/ndless/ndless_resources.tns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/touchpad_proto_fix/ndless/ndless_resources.tns -------------------------------------------------------------------------------- /touchpad_proto_fix/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/touchpad_proto_fix/src/Makefile -------------------------------------------------------------------------------- /touchpad_proto_fix/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parrotgeek1/TI-Nspire/HEAD/touchpad_proto_fix/src/main.c --------------------------------------------------------------------------------