├── .gitattributes ├── .gitignore ├── FORTUNA_Launcher.c ├── FORTUNA_Launcher.h ├── Makefile ├── OSDInit.c ├── OSDInit.h ├── README.md ├── libcdvd_add.c ├── libcdvd_add.h ├── pad.c ├── pad.h ├── usbd.irx └── usbhdfsd.irx /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VTSTech/PS2_FORTUNA_Launcher/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VTSTech/PS2_FORTUNA_Launcher/HEAD/.gitignore -------------------------------------------------------------------------------- /FORTUNA_Launcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VTSTech/PS2_FORTUNA_Launcher/HEAD/FORTUNA_Launcher.c -------------------------------------------------------------------------------- /FORTUNA_Launcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VTSTech/PS2_FORTUNA_Launcher/HEAD/FORTUNA_Launcher.h -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VTSTech/PS2_FORTUNA_Launcher/HEAD/Makefile -------------------------------------------------------------------------------- /OSDInit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VTSTech/PS2_FORTUNA_Launcher/HEAD/OSDInit.c -------------------------------------------------------------------------------- /OSDInit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VTSTech/PS2_FORTUNA_Launcher/HEAD/OSDInit.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VTSTech/PS2_FORTUNA_Launcher/HEAD/README.md -------------------------------------------------------------------------------- /libcdvd_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VTSTech/PS2_FORTUNA_Launcher/HEAD/libcdvd_add.c -------------------------------------------------------------------------------- /libcdvd_add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VTSTech/PS2_FORTUNA_Launcher/HEAD/libcdvd_add.h -------------------------------------------------------------------------------- /pad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VTSTech/PS2_FORTUNA_Launcher/HEAD/pad.c -------------------------------------------------------------------------------- /pad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VTSTech/PS2_FORTUNA_Launcher/HEAD/pad.h -------------------------------------------------------------------------------- /usbd.irx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VTSTech/PS2_FORTUNA_Launcher/HEAD/usbd.irx -------------------------------------------------------------------------------- /usbhdfsd.irx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VTSTech/PS2_FORTUNA_Launcher/HEAD/usbhdfsd.irx --------------------------------------------------------------------------------