├── .clang-format ├── .editorconfig ├── .github └── workflows │ └── compilation.yml ├── .gitignore ├── .gitlab-ci.yml ├── DeviceSupport.c ├── DeviceSupport.h ├── LICENSE_OFL.txt ├── Makefile ├── NotoSansMono-CondensedBold.ttf ├── OSDInit.c ├── OSDInit.h ├── PS2IDBMS ├── PS2IDBMS.sln ├── PS2IDBMS.vcxproj ├── dbms.c ├── ident.c ├── ident.h ├── main.c ├── ps2db0112.h └── ps2db0113.h ├── PS2Ident.db ├── README.md ├── ROMIMG ├── ELF.h ├── ROMIMG.sln ├── ROMIMG.vcxproj ├── SonyRX.c ├── SonyRX.h ├── main.c ├── platform.c ├── platform.h ├── romimg.c └── romimg.h ├── Research ├── PS2Dumper.txt ├── iopdumper.irx └── iopdumper.pis ├── SYSMAN_rpc.c ├── SYSMAN_rpc.h ├── TODO ├── UI.c ├── UI.h ├── changelog.txt ├── crc16.c ├── crc16.h ├── dbms.c ├── dbms.h ├── dvdplayer.c ├── dvdplayer.h ├── font.c ├── font.h ├── graphics.c ├── graphics.h ├── ident.c ├── ident.h ├── irx └── ioprp.img ├── lang.c ├── lang.h ├── lang ├── fonts.txt ├── labels_FR.txt ├── labels_GE.txt ├── labels_PO.txt ├── labels_SP.txt ├── strings_FR.txt ├── strings_GE.txt ├── strings_PO.txt └── strings_SP.txt ├── libcdvd_add.c ├── libcdvd_add.h ├── main.c ├── main.h ├── menu.c ├── menu.h ├── modelname.c ├── modelname.h ├── pad.c ├── pad.h ├── ps1.c ├── ps1.h ├── ps2db.h ├── resources ├── _background.png ├── background.png ├── buttons.png └── devices.png ├── romdrv ├── Makefile ├── Rules.bin.make ├── Rules.make ├── include │ └── romdrv.h └── src │ ├── exports.tab │ ├── imports.lst │ ├── irx_imports.h │ └── romdrv.c ├── sysman ├── Makefile ├── Rules.make ├── dev9.c ├── dev9.h ├── iLink.c ├── iLink.h ├── imports.lst ├── irx_imports.h ├── main.c ├── main.h ├── rom.c ├── rom.h ├── romimg.h ├── spu2.c ├── spu2.h ├── sysinfo.h ├── sysman_rpc.h ├── usb.c └── usb.h ├── system.c ├── system.h └── usbhdfsdfsv ├── Makefile ├── Rules.make ├── imports.lst ├── irx_imports.h └── main.c /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/compilation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/.github/workflows/compilation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /DeviceSupport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/DeviceSupport.c -------------------------------------------------------------------------------- /DeviceSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/DeviceSupport.h -------------------------------------------------------------------------------- /LICENSE_OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/LICENSE_OFL.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/Makefile -------------------------------------------------------------------------------- /NotoSansMono-CondensedBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/NotoSansMono-CondensedBold.ttf -------------------------------------------------------------------------------- /OSDInit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/OSDInit.c -------------------------------------------------------------------------------- /OSDInit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/OSDInit.h -------------------------------------------------------------------------------- /PS2IDBMS/PS2IDBMS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/PS2IDBMS/PS2IDBMS.sln -------------------------------------------------------------------------------- /PS2IDBMS/PS2IDBMS.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/PS2IDBMS/PS2IDBMS.vcxproj -------------------------------------------------------------------------------- /PS2IDBMS/dbms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/PS2IDBMS/dbms.c -------------------------------------------------------------------------------- /PS2IDBMS/ident.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/PS2IDBMS/ident.c -------------------------------------------------------------------------------- /PS2IDBMS/ident.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/PS2IDBMS/ident.h -------------------------------------------------------------------------------- /PS2IDBMS/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/PS2IDBMS/main.c -------------------------------------------------------------------------------- /PS2IDBMS/ps2db0112.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/PS2IDBMS/ps2db0112.h -------------------------------------------------------------------------------- /PS2IDBMS/ps2db0113.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/PS2IDBMS/ps2db0113.h -------------------------------------------------------------------------------- /PS2Ident.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/PS2Ident.db -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/README.md -------------------------------------------------------------------------------- /ROMIMG/ELF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/ROMIMG/ELF.h -------------------------------------------------------------------------------- /ROMIMG/ROMIMG.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/ROMIMG/ROMIMG.sln -------------------------------------------------------------------------------- /ROMIMG/ROMIMG.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/ROMIMG/ROMIMG.vcxproj -------------------------------------------------------------------------------- /ROMIMG/SonyRX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/ROMIMG/SonyRX.c -------------------------------------------------------------------------------- /ROMIMG/SonyRX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/ROMIMG/SonyRX.h -------------------------------------------------------------------------------- /ROMIMG/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/ROMIMG/main.c -------------------------------------------------------------------------------- /ROMIMG/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/ROMIMG/platform.c -------------------------------------------------------------------------------- /ROMIMG/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/ROMIMG/platform.h -------------------------------------------------------------------------------- /ROMIMG/romimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/ROMIMG/romimg.c -------------------------------------------------------------------------------- /ROMIMG/romimg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/ROMIMG/romimg.h -------------------------------------------------------------------------------- /Research/PS2Dumper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/Research/PS2Dumper.txt -------------------------------------------------------------------------------- /Research/iopdumper.irx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/Research/iopdumper.irx -------------------------------------------------------------------------------- /Research/iopdumper.pis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/Research/iopdumper.pis -------------------------------------------------------------------------------- /SYSMAN_rpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/SYSMAN_rpc.c -------------------------------------------------------------------------------- /SYSMAN_rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/SYSMAN_rpc.h -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/TODO -------------------------------------------------------------------------------- /UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/UI.c -------------------------------------------------------------------------------- /UI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/UI.h -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/changelog.txt -------------------------------------------------------------------------------- /crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/crc16.c -------------------------------------------------------------------------------- /crc16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/crc16.h -------------------------------------------------------------------------------- /dbms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/dbms.c -------------------------------------------------------------------------------- /dbms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/dbms.h -------------------------------------------------------------------------------- /dvdplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/dvdplayer.c -------------------------------------------------------------------------------- /dvdplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/dvdplayer.h -------------------------------------------------------------------------------- /font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/font.c -------------------------------------------------------------------------------- /font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/font.h -------------------------------------------------------------------------------- /graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/graphics.c -------------------------------------------------------------------------------- /graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/graphics.h -------------------------------------------------------------------------------- /ident.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/ident.c -------------------------------------------------------------------------------- /ident.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/ident.h -------------------------------------------------------------------------------- /irx/ioprp.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/irx/ioprp.img -------------------------------------------------------------------------------- /lang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/lang.c -------------------------------------------------------------------------------- /lang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/lang.h -------------------------------------------------------------------------------- /lang/fonts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/lang/fonts.txt -------------------------------------------------------------------------------- /lang/labels_FR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/lang/labels_FR.txt -------------------------------------------------------------------------------- /lang/labels_GE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/lang/labels_GE.txt -------------------------------------------------------------------------------- /lang/labels_PO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/lang/labels_PO.txt -------------------------------------------------------------------------------- /lang/labels_SP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/lang/labels_SP.txt -------------------------------------------------------------------------------- /lang/strings_FR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/lang/strings_FR.txt -------------------------------------------------------------------------------- /lang/strings_GE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/lang/strings_GE.txt -------------------------------------------------------------------------------- /lang/strings_PO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/lang/strings_PO.txt -------------------------------------------------------------------------------- /lang/strings_SP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/lang/strings_SP.txt -------------------------------------------------------------------------------- /libcdvd_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/libcdvd_add.c -------------------------------------------------------------------------------- /libcdvd_add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/libcdvd_add.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/main.c -------------------------------------------------------------------------------- /main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/main.h -------------------------------------------------------------------------------- /menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/menu.c -------------------------------------------------------------------------------- /menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/menu.h -------------------------------------------------------------------------------- /modelname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/modelname.c -------------------------------------------------------------------------------- /modelname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/modelname.h -------------------------------------------------------------------------------- /pad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/pad.c -------------------------------------------------------------------------------- /pad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/pad.h -------------------------------------------------------------------------------- /ps1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/ps1.c -------------------------------------------------------------------------------- /ps1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/ps1.h -------------------------------------------------------------------------------- /ps2db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/ps2db.h -------------------------------------------------------------------------------- /resources/_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/resources/_background.png -------------------------------------------------------------------------------- /resources/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/resources/background.png -------------------------------------------------------------------------------- /resources/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/resources/buttons.png -------------------------------------------------------------------------------- /resources/devices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/resources/devices.png -------------------------------------------------------------------------------- /romdrv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/romdrv/Makefile -------------------------------------------------------------------------------- /romdrv/Rules.bin.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/romdrv/Rules.bin.make -------------------------------------------------------------------------------- /romdrv/Rules.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/romdrv/Rules.make -------------------------------------------------------------------------------- /romdrv/include/romdrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/romdrv/include/romdrv.h -------------------------------------------------------------------------------- /romdrv/src/exports.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/romdrv/src/exports.tab -------------------------------------------------------------------------------- /romdrv/src/imports.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/romdrv/src/imports.lst -------------------------------------------------------------------------------- /romdrv/src/irx_imports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/romdrv/src/irx_imports.h -------------------------------------------------------------------------------- /romdrv/src/romdrv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/romdrv/src/romdrv.c -------------------------------------------------------------------------------- /sysman/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/sysman/Makefile -------------------------------------------------------------------------------- /sysman/Rules.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/sysman/Rules.make -------------------------------------------------------------------------------- /sysman/dev9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/sysman/dev9.c -------------------------------------------------------------------------------- /sysman/dev9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/sysman/dev9.h -------------------------------------------------------------------------------- /sysman/iLink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/sysman/iLink.c -------------------------------------------------------------------------------- /sysman/iLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/sysman/iLink.h -------------------------------------------------------------------------------- /sysman/imports.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/sysman/imports.lst -------------------------------------------------------------------------------- /sysman/irx_imports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/sysman/irx_imports.h -------------------------------------------------------------------------------- /sysman/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/sysman/main.c -------------------------------------------------------------------------------- /sysman/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/sysman/main.h -------------------------------------------------------------------------------- /sysman/rom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/sysman/rom.c -------------------------------------------------------------------------------- /sysman/rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/sysman/rom.h -------------------------------------------------------------------------------- /sysman/romimg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/sysman/romimg.h -------------------------------------------------------------------------------- /sysman/spu2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/sysman/spu2.c -------------------------------------------------------------------------------- /sysman/spu2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/sysman/spu2.h -------------------------------------------------------------------------------- /sysman/sysinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/sysman/sysinfo.h -------------------------------------------------------------------------------- /sysman/sysman_rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/sysman/sysman_rpc.h -------------------------------------------------------------------------------- /sysman/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/sysman/usb.c -------------------------------------------------------------------------------- /sysman/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/sysman/usb.h -------------------------------------------------------------------------------- /system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/system.c -------------------------------------------------------------------------------- /system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/system.h -------------------------------------------------------------------------------- /usbhdfsdfsv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/usbhdfsdfsv/Makefile -------------------------------------------------------------------------------- /usbhdfsdfsv/Rules.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/usbhdfsdfsv/Rules.make -------------------------------------------------------------------------------- /usbhdfsdfsv/imports.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/usbhdfsdfsv/imports.lst -------------------------------------------------------------------------------- /usbhdfsdfsv/irx_imports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/usbhdfsdfsv/irx_imports.h -------------------------------------------------------------------------------- /usbhdfsdfsv/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/PS2Ident/HEAD/usbhdfsdfsv/main.c --------------------------------------------------------------------------------