├── .gitignore ├── Makefile ├── README.md ├── control ├── entry.m ├── utils.h └── utils.m /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .theos/ 3 | .vscode/ -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rednick16/TrollStoreJITEnabler/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rednick16/TrollStoreJITEnabler/HEAD/README.md -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rednick16/TrollStoreJITEnabler/HEAD/control -------------------------------------------------------------------------------- /entry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rednick16/TrollStoreJITEnabler/HEAD/entry.m -------------------------------------------------------------------------------- /utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rednick16/TrollStoreJITEnabler/HEAD/utils.h -------------------------------------------------------------------------------- /utils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rednick16/TrollStoreJITEnabler/HEAD/utils.m --------------------------------------------------------------------------------