├── .gitignore ├── .gitmodules ├── ReadMe.md ├── cmake └── FindIDA.cmake └── src ├── elf_common ├── elf.h └── elf_reader.hpp ├── ps3 ├── CMakeLists.txt ├── ReadMe.md ├── cell_loader.cpp ├── cell_loader.hpp ├── ps3.cpp ├── ps3.xml └── sce.h ├── vita ├── CMakeLists.txt ├── ReadMe.md ├── psp2_loader.cpp ├── psp2_loader.hpp ├── sce.h └── vita.cpp └── wiiu ├── CMakeLists.txt ├── ReadMe.md ├── cafe.h ├── cafe_loader.cpp ├── cafe_loader.hpp ├── tinfl.c └── wiiu.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/ida_gel/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/ida_gel/HEAD/.gitmodules -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/ida_gel/HEAD/ReadMe.md -------------------------------------------------------------------------------- /cmake/FindIDA.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/ida_gel/HEAD/cmake/FindIDA.cmake -------------------------------------------------------------------------------- /src/elf_common/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/ida_gel/HEAD/src/elf_common/elf.h -------------------------------------------------------------------------------- /src/elf_common/elf_reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/ida_gel/HEAD/src/elf_common/elf_reader.hpp -------------------------------------------------------------------------------- /src/ps3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/ida_gel/HEAD/src/ps3/CMakeLists.txt -------------------------------------------------------------------------------- /src/ps3/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/ida_gel/HEAD/src/ps3/ReadMe.md -------------------------------------------------------------------------------- /src/ps3/cell_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/ida_gel/HEAD/src/ps3/cell_loader.cpp -------------------------------------------------------------------------------- /src/ps3/cell_loader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/ida_gel/HEAD/src/ps3/cell_loader.hpp -------------------------------------------------------------------------------- /src/ps3/ps3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/ida_gel/HEAD/src/ps3/ps3.cpp -------------------------------------------------------------------------------- /src/ps3/ps3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/ida_gel/HEAD/src/ps3/ps3.xml -------------------------------------------------------------------------------- /src/ps3/sce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/ida_gel/HEAD/src/ps3/sce.h -------------------------------------------------------------------------------- /src/vita/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/ida_gel/HEAD/src/vita/CMakeLists.txt -------------------------------------------------------------------------------- /src/vita/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/ida_gel/HEAD/src/vita/ReadMe.md -------------------------------------------------------------------------------- /src/vita/psp2_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/ida_gel/HEAD/src/vita/psp2_loader.cpp -------------------------------------------------------------------------------- /src/vita/psp2_loader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/ida_gel/HEAD/src/vita/psp2_loader.hpp -------------------------------------------------------------------------------- /src/vita/sce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/ida_gel/HEAD/src/vita/sce.h -------------------------------------------------------------------------------- /src/vita/vita.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/ida_gel/HEAD/src/vita/vita.cpp -------------------------------------------------------------------------------- /src/wiiu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/ida_gel/HEAD/src/wiiu/CMakeLists.txt -------------------------------------------------------------------------------- /src/wiiu/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/ida_gel/HEAD/src/wiiu/ReadMe.md -------------------------------------------------------------------------------- /src/wiiu/cafe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/ida_gel/HEAD/src/wiiu/cafe.h -------------------------------------------------------------------------------- /src/wiiu/cafe_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/ida_gel/HEAD/src/wiiu/cafe_loader.cpp -------------------------------------------------------------------------------- /src/wiiu/cafe_loader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/ida_gel/HEAD/src/wiiu/cafe_loader.hpp -------------------------------------------------------------------------------- /src/wiiu/tinfl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/ida_gel/HEAD/src/wiiu/tinfl.c -------------------------------------------------------------------------------- /src/wiiu/wiiu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosoul94/ida_gel/HEAD/src/wiiu/wiiu.cpp --------------------------------------------------------------------------------