├── .gitignore ├── LICENSE ├── README.md ├── change.log ├── extra ├── extra.json └── lib │ ├── SceVshBridge_SceVshBridge__vshSblAimgrGetConsoleId.S │ └── makefile ├── font.c ├── graphics.c ├── graphics.h ├── livearea ├── bg0.png ├── bg0.psd ├── github.png ├── github.psd ├── icon0.png ├── icon0.psd ├── pic0.png ├── pic0.psd ├── startup.png ├── startup.psd └── template.xml ├── main.c ├── makefile ├── makefile_lite └── thanks.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoti/psv_idpsdump/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoti/psv_idpsdump/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoti/psv_idpsdump/HEAD/README.md -------------------------------------------------------------------------------- /change.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoti/psv_idpsdump/HEAD/change.log -------------------------------------------------------------------------------- /extra/extra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoti/psv_idpsdump/HEAD/extra/extra.json -------------------------------------------------------------------------------- /extra/lib/SceVshBridge_SceVshBridge__vshSblAimgrGetConsoleId.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoti/psv_idpsdump/HEAD/extra/lib/SceVshBridge_SceVshBridge__vshSblAimgrGetConsoleId.S -------------------------------------------------------------------------------- /extra/lib/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoti/psv_idpsdump/HEAD/extra/lib/makefile -------------------------------------------------------------------------------- /font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoti/psv_idpsdump/HEAD/font.c -------------------------------------------------------------------------------- /graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoti/psv_idpsdump/HEAD/graphics.c -------------------------------------------------------------------------------- /graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoti/psv_idpsdump/HEAD/graphics.h -------------------------------------------------------------------------------- /livearea/bg0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoti/psv_idpsdump/HEAD/livearea/bg0.png -------------------------------------------------------------------------------- /livearea/bg0.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoti/psv_idpsdump/HEAD/livearea/bg0.psd -------------------------------------------------------------------------------- /livearea/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoti/psv_idpsdump/HEAD/livearea/github.png -------------------------------------------------------------------------------- /livearea/github.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoti/psv_idpsdump/HEAD/livearea/github.psd -------------------------------------------------------------------------------- /livearea/icon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoti/psv_idpsdump/HEAD/livearea/icon0.png -------------------------------------------------------------------------------- /livearea/icon0.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoti/psv_idpsdump/HEAD/livearea/icon0.psd -------------------------------------------------------------------------------- /livearea/pic0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoti/psv_idpsdump/HEAD/livearea/pic0.png -------------------------------------------------------------------------------- /livearea/pic0.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoti/psv_idpsdump/HEAD/livearea/pic0.psd -------------------------------------------------------------------------------- /livearea/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoti/psv_idpsdump/HEAD/livearea/startup.png -------------------------------------------------------------------------------- /livearea/startup.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoti/psv_idpsdump/HEAD/livearea/startup.psd -------------------------------------------------------------------------------- /livearea/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoti/psv_idpsdump/HEAD/livearea/template.xml -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoti/psv_idpsdump/HEAD/main.c -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoti/psv_idpsdump/HEAD/makefile -------------------------------------------------------------------------------- /makefile_lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoti/psv_idpsdump/HEAD/makefile_lite -------------------------------------------------------------------------------- /thanks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoti/psv_idpsdump/HEAD/thanks.txt --------------------------------------------------------------------------------