├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Documentation ├── PS2_Disc_Security_explanations.htm ├── howto.txt └── ps2boot.txt ├── LICENSE ├── README.md ├── alt ├── .gitignore ├── CMakeLists.txt ├── Cargo.lock ├── Cargo.toml ├── Makefile ├── README ├── ps2logo.c └── ps2logo.rs ├── ps2logo.go ├── ps2logo_test.go └── script └── test /.gitignore: -------------------------------------------------------------------------------- 1 | /ps2logo 2 | target 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/ps2logo/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/ps2logo/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Documentation/PS2_Disc_Security_explanations.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/ps2logo/HEAD/Documentation/PS2_Disc_Security_explanations.htm -------------------------------------------------------------------------------- /Documentation/howto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/ps2logo/HEAD/Documentation/howto.txt -------------------------------------------------------------------------------- /Documentation/ps2boot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/ps2logo/HEAD/Documentation/ps2boot.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/ps2logo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/ps2logo/HEAD/README.md -------------------------------------------------------------------------------- /alt/.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | *.o 3 | build/ 4 | ps2logo 5 | -------------------------------------------------------------------------------- /alt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/ps2logo/HEAD/alt/CMakeLists.txt -------------------------------------------------------------------------------- /alt/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/ps2logo/HEAD/alt/Cargo.lock -------------------------------------------------------------------------------- /alt/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/ps2logo/HEAD/alt/Cargo.toml -------------------------------------------------------------------------------- /alt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/ps2logo/HEAD/alt/Makefile -------------------------------------------------------------------------------- /alt/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/ps2logo/HEAD/alt/README -------------------------------------------------------------------------------- /alt/ps2logo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/ps2logo/HEAD/alt/ps2logo.c -------------------------------------------------------------------------------- /alt/ps2logo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/ps2logo/HEAD/alt/ps2logo.rs -------------------------------------------------------------------------------- /ps2logo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/ps2logo/HEAD/ps2logo.go -------------------------------------------------------------------------------- /ps2logo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/ps2logo/HEAD/ps2logo_test.go -------------------------------------------------------------------------------- /script/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlafeldt/ps2logo/HEAD/script/test --------------------------------------------------------------------------------