├── .clang-format ├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── compilation.yml ├── .gitignore ├── PAYLOADS ├── 1.00-2.13 │ ├── Mainrules.mk │ ├── eecrt0.ee.S │ ├── eepayload.ee.c │ ├── emulator.mk │ ├── hardware.mk │ ├── ioppayload.iop.c │ ├── iopresolve.h │ ├── stage1_210_212.iop.S │ ├── stage1_213.iop.S │ ├── syscalls.ee.S │ └── udf │ │ └── VIDEO_TS │ │ ├── BOOT.ELF │ │ ├── VIDEO_TS.BUP │ │ ├── VIDEO_TS.IFO │ │ ├── VTS_01_0.BUP │ │ ├── VTS_01_0.IFO │ │ └── VTS_01_1.VOB └── 3.03-3.11 │ ├── build.sh │ ├── crt0.S │ ├── jump.S │ ├── payload.c │ └── udf │ └── VIDEO_TS │ ├── VIDEO_TS.IFO │ ├── VTS_01_0.IFO │ └── VTS_02_0.IFO ├── README.md └── TODO /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/FreeDVDBoot/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/FreeDVDBoot/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/FreeDVDBoot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/compilation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/FreeDVDBoot/HEAD/.github/workflows/compilation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/FreeDVDBoot/HEAD/.gitignore -------------------------------------------------------------------------------- /PAYLOADS/1.00-2.13/Mainrules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/FreeDVDBoot/HEAD/PAYLOADS/1.00-2.13/Mainrules.mk -------------------------------------------------------------------------------- /PAYLOADS/1.00-2.13/eecrt0.ee.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/FreeDVDBoot/HEAD/PAYLOADS/1.00-2.13/eecrt0.ee.S -------------------------------------------------------------------------------- /PAYLOADS/1.00-2.13/eepayload.ee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/FreeDVDBoot/HEAD/PAYLOADS/1.00-2.13/eepayload.ee.c -------------------------------------------------------------------------------- /PAYLOADS/1.00-2.13/emulator.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/FreeDVDBoot/HEAD/PAYLOADS/1.00-2.13/emulator.mk -------------------------------------------------------------------------------- /PAYLOADS/1.00-2.13/hardware.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/FreeDVDBoot/HEAD/PAYLOADS/1.00-2.13/hardware.mk -------------------------------------------------------------------------------- /PAYLOADS/1.00-2.13/ioppayload.iop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/FreeDVDBoot/HEAD/PAYLOADS/1.00-2.13/ioppayload.iop.c -------------------------------------------------------------------------------- /PAYLOADS/1.00-2.13/iopresolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/FreeDVDBoot/HEAD/PAYLOADS/1.00-2.13/iopresolve.h -------------------------------------------------------------------------------- /PAYLOADS/1.00-2.13/stage1_210_212.iop.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/FreeDVDBoot/HEAD/PAYLOADS/1.00-2.13/stage1_210_212.iop.S -------------------------------------------------------------------------------- /PAYLOADS/1.00-2.13/stage1_213.iop.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/FreeDVDBoot/HEAD/PAYLOADS/1.00-2.13/stage1_213.iop.S -------------------------------------------------------------------------------- /PAYLOADS/1.00-2.13/syscalls.ee.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/FreeDVDBoot/HEAD/PAYLOADS/1.00-2.13/syscalls.ee.S -------------------------------------------------------------------------------- /PAYLOADS/1.00-2.13/udf/VIDEO_TS/BOOT.ELF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/FreeDVDBoot/HEAD/PAYLOADS/1.00-2.13/udf/VIDEO_TS/BOOT.ELF -------------------------------------------------------------------------------- /PAYLOADS/1.00-2.13/udf/VIDEO_TS/VIDEO_TS.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/FreeDVDBoot/HEAD/PAYLOADS/1.00-2.13/udf/VIDEO_TS/VIDEO_TS.BUP -------------------------------------------------------------------------------- /PAYLOADS/1.00-2.13/udf/VIDEO_TS/VIDEO_TS.IFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/FreeDVDBoot/HEAD/PAYLOADS/1.00-2.13/udf/VIDEO_TS/VIDEO_TS.IFO -------------------------------------------------------------------------------- /PAYLOADS/1.00-2.13/udf/VIDEO_TS/VTS_01_0.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/FreeDVDBoot/HEAD/PAYLOADS/1.00-2.13/udf/VIDEO_TS/VTS_01_0.BUP -------------------------------------------------------------------------------- /PAYLOADS/1.00-2.13/udf/VIDEO_TS/VTS_01_0.IFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/FreeDVDBoot/HEAD/PAYLOADS/1.00-2.13/udf/VIDEO_TS/VTS_01_0.IFO -------------------------------------------------------------------------------- /PAYLOADS/1.00-2.13/udf/VIDEO_TS/VTS_01_1.VOB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/FreeDVDBoot/HEAD/PAYLOADS/1.00-2.13/udf/VIDEO_TS/VTS_01_1.VOB -------------------------------------------------------------------------------- /PAYLOADS/3.03-3.11/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/FreeDVDBoot/HEAD/PAYLOADS/3.03-3.11/build.sh -------------------------------------------------------------------------------- /PAYLOADS/3.03-3.11/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/FreeDVDBoot/HEAD/PAYLOADS/3.03-3.11/crt0.S -------------------------------------------------------------------------------- /PAYLOADS/3.03-3.11/jump.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/FreeDVDBoot/HEAD/PAYLOADS/3.03-3.11/jump.S -------------------------------------------------------------------------------- /PAYLOADS/3.03-3.11/payload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/FreeDVDBoot/HEAD/PAYLOADS/3.03-3.11/payload.c -------------------------------------------------------------------------------- /PAYLOADS/3.03-3.11/udf/VIDEO_TS/VIDEO_TS.IFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/FreeDVDBoot/HEAD/PAYLOADS/3.03-3.11/udf/VIDEO_TS/VIDEO_TS.IFO -------------------------------------------------------------------------------- /PAYLOADS/3.03-3.11/udf/VIDEO_TS/VTS_01_0.IFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/FreeDVDBoot/HEAD/PAYLOADS/3.03-3.11/udf/VIDEO_TS/VTS_01_0.IFO -------------------------------------------------------------------------------- /PAYLOADS/3.03-3.11/udf/VIDEO_TS/VTS_02_0.IFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/FreeDVDBoot/HEAD/PAYLOADS/3.03-3.11/udf/VIDEO_TS/VTS_02_0.IFO -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/FreeDVDBoot/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/FreeDVDBoot/HEAD/TODO --------------------------------------------------------------------------------