├── .clang-format ├── .github └── workflows │ └── sanity-check.yml ├── .gitignore ├── CHANGELOG.md ├── Makefile ├── README.md ├── meta.json └── source └── main.c /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scene-Collective/ps4-kernel-dumper/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/sanity-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scene-Collective/ps4-kernel-dumper/HEAD/.github/workflows/sanity-check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /*.bin 2 | /*.map 3 | /build 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scene-Collective/ps4-kernel-dumper/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scene-Collective/ps4-kernel-dumper/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scene-Collective/ps4-kernel-dumper/HEAD/README.md -------------------------------------------------------------------------------- /meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scene-Collective/ps4-kernel-dumper/HEAD/meta.json -------------------------------------------------------------------------------- /source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scene-Collective/ps4-kernel-dumper/HEAD/source/main.c --------------------------------------------------------------------------------