├── .clang-format ├── .gitignore ├── Makefile ├── README.md ├── elf.h ├── elf_eh.cpp ├── elf_eh.h ├── lz4.c ├── lz4.h ├── nx2elf.cpp ├── nx2elf.sln ├── nx2elf.vcxproj └── types.h /.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: Chromium 2 | IndentCaseLabels: false 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vs/ 2 | x64/ 3 | Debug/ 4 | *.vcxproj.user 5 | nx2elf 6 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuffle2/nx2elf/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuffle2/nx2elf/HEAD/README.md -------------------------------------------------------------------------------- /elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuffle2/nx2elf/HEAD/elf.h -------------------------------------------------------------------------------- /elf_eh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuffle2/nx2elf/HEAD/elf_eh.cpp -------------------------------------------------------------------------------- /elf_eh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuffle2/nx2elf/HEAD/elf_eh.h -------------------------------------------------------------------------------- /lz4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuffle2/nx2elf/HEAD/lz4.c -------------------------------------------------------------------------------- /lz4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuffle2/nx2elf/HEAD/lz4.h -------------------------------------------------------------------------------- /nx2elf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuffle2/nx2elf/HEAD/nx2elf.cpp -------------------------------------------------------------------------------- /nx2elf.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuffle2/nx2elf/HEAD/nx2elf.sln -------------------------------------------------------------------------------- /nx2elf.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuffle2/nx2elf/HEAD/nx2elf.vcxproj -------------------------------------------------------------------------------- /types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuffle2/nx2elf/HEAD/types.h --------------------------------------------------------------------------------