├── .gitignore ├── .gitmodules ├── README.md ├── aaa.c ├── auto_decompiler.py ├── auto_glabel.py ├── auto_header.py ├── auto_jtable.py ├── auto_splat_inflate.py ├── auto_splitter.py ├── auto_updater.py ├── auto_updater_2.py ├── bruh.c ├── ctx1.c ├── lib └── getNewFunc.py ├── mm.txt ├── permuter_settings.toml ├── prelude.inc ├── savefilerejects.c ├── shell.c ├── text.c ├── ugh.txt ├── unk0 └── unk4 /.gitignore: -------------------------------------------------------------------------------- 1 | *.s 2 | __pycache__ 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farisawan-2000/auto-decompiler/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farisawan-2000/auto-decompiler/HEAD/README.md -------------------------------------------------------------------------------- /aaa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farisawan-2000/auto-decompiler/HEAD/aaa.c -------------------------------------------------------------------------------- /auto_decompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farisawan-2000/auto-decompiler/HEAD/auto_decompiler.py -------------------------------------------------------------------------------- /auto_glabel.py: -------------------------------------------------------------------------------- 1 | import sys, os 2 | -------------------------------------------------------------------------------- /auto_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farisawan-2000/auto-decompiler/HEAD/auto_header.py -------------------------------------------------------------------------------- /auto_jtable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farisawan-2000/auto-decompiler/HEAD/auto_jtable.py -------------------------------------------------------------------------------- /auto_splat_inflate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farisawan-2000/auto-decompiler/HEAD/auto_splat_inflate.py -------------------------------------------------------------------------------- /auto_splitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farisawan-2000/auto-decompiler/HEAD/auto_splitter.py -------------------------------------------------------------------------------- /auto_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farisawan-2000/auto-decompiler/HEAD/auto_updater.py -------------------------------------------------------------------------------- /auto_updater_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farisawan-2000/auto-decompiler/HEAD/auto_updater_2.py -------------------------------------------------------------------------------- /bruh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farisawan-2000/auto-decompiler/HEAD/bruh.c -------------------------------------------------------------------------------- /ctx1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farisawan-2000/auto-decompiler/HEAD/ctx1.c -------------------------------------------------------------------------------- /lib/getNewFunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farisawan-2000/auto-decompiler/HEAD/lib/getNewFunc.py -------------------------------------------------------------------------------- /mm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farisawan-2000/auto-decompiler/HEAD/mm.txt -------------------------------------------------------------------------------- /permuter_settings.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farisawan-2000/auto-decompiler/HEAD/permuter_settings.toml -------------------------------------------------------------------------------- /prelude.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farisawan-2000/auto-decompiler/HEAD/prelude.inc -------------------------------------------------------------------------------- /savefilerejects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farisawan-2000/auto-decompiler/HEAD/savefilerejects.c -------------------------------------------------------------------------------- /shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farisawan-2000/auto-decompiler/HEAD/shell.c -------------------------------------------------------------------------------- /text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farisawan-2000/auto-decompiler/HEAD/text.c -------------------------------------------------------------------------------- /ugh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farisawan-2000/auto-decompiler/HEAD/ugh.txt -------------------------------------------------------------------------------- /unk0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unk4: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------