├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── homebrew.js ├── main.c ├── notify.c ├── notify.h ├── pairui.c ├── pairui.h ├── regmgr.c ├── regmgr.h └── sce_sys └── icon0.png /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps5-payload-dev/linkdev/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.elf 2 | *.o 3 | *~ 4 | font.h 5 | *.zip 6 | 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps5-payload-dev/linkdev/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps5-payload-dev/linkdev/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps5-payload-dev/linkdev/HEAD/README.md -------------------------------------------------------------------------------- /homebrew.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps5-payload-dev/linkdev/HEAD/homebrew.js -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps5-payload-dev/linkdev/HEAD/main.c -------------------------------------------------------------------------------- /notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps5-payload-dev/linkdev/HEAD/notify.c -------------------------------------------------------------------------------- /notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps5-payload-dev/linkdev/HEAD/notify.h -------------------------------------------------------------------------------- /pairui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps5-payload-dev/linkdev/HEAD/pairui.c -------------------------------------------------------------------------------- /pairui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps5-payload-dev/linkdev/HEAD/pairui.h -------------------------------------------------------------------------------- /regmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps5-payload-dev/linkdev/HEAD/regmgr.c -------------------------------------------------------------------------------- /regmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps5-payload-dev/linkdev/HEAD/regmgr.h -------------------------------------------------------------------------------- /sce_sys/icon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps5-payload-dev/linkdev/HEAD/sce_sys/icon0.png --------------------------------------------------------------------------------