├── .gitattributes ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── function-patcher-example.cbp ├── function-patcher-example.layout └── src ├── common └── common.h ├── entry.c ├── link.ld ├── main.cpp ├── main.h └── patcher ├── coreinit_function_patcher.cpp ├── coreinit_function_patcher.h ├── fs_function_patcher.cpp ├── fs_function_patcher.h ├── pad_function_patcher.cpp └── pad_function_patcher.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/function-patcher-example/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/function-patcher-example/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/function-patcher-example/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/function-patcher-example/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/function-patcher-example/HEAD/README.md -------------------------------------------------------------------------------- /function-patcher-example.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/function-patcher-example/HEAD/function-patcher-example.cbp -------------------------------------------------------------------------------- /function-patcher-example.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/function-patcher-example/HEAD/function-patcher-example.layout -------------------------------------------------------------------------------- /src/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/function-patcher-example/HEAD/src/common/common.h -------------------------------------------------------------------------------- /src/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/function-patcher-example/HEAD/src/entry.c -------------------------------------------------------------------------------- /src/link.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/function-patcher-example/HEAD/src/link.ld -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/function-patcher-example/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/function-patcher-example/HEAD/src/main.h -------------------------------------------------------------------------------- /src/patcher/coreinit_function_patcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/function-patcher-example/HEAD/src/patcher/coreinit_function_patcher.cpp -------------------------------------------------------------------------------- /src/patcher/coreinit_function_patcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/function-patcher-example/HEAD/src/patcher/coreinit_function_patcher.h -------------------------------------------------------------------------------- /src/patcher/fs_function_patcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/function-patcher-example/HEAD/src/patcher/fs_function_patcher.cpp -------------------------------------------------------------------------------- /src/patcher/fs_function_patcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/function-patcher-example/HEAD/src/patcher/fs_function_patcher.h -------------------------------------------------------------------------------- /src/patcher/pad_function_patcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/function-patcher-example/HEAD/src/patcher/pad_function_patcher.cpp -------------------------------------------------------------------------------- /src/patcher/pad_function_patcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/function-patcher-example/HEAD/src/patcher/pad_function_patcher.h --------------------------------------------------------------------------------