diff options
| author | John "Lameguy" Wilbert Villamor <lameguy64@gmail.com> | 2022-03-25 09:22:20 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-25 09:22:20 +0800 |
| commit | 975e614b3c840e2f717adac1d1cb9cee4e5e561b (patch) | |
| tree | 6584ce5b0dbe27a466c95c81fac61b0d90f627bd /examples/io/system573/iso.xml | |
| parent | 05d44488bd5587786f4bd0286fc0f555c79aa46a (diff) | |
| parent | 45168ae43e29aa5930ee5a206475ae836078915f (diff) | |
| download | psn00bsdk-975e614b3c840e2f717adac1d1cb9cee4e5e561b.tar.gz | |
Merge pull request #46 from spicyjpeg/psxmdec
Critical ldscript fixes, initial MDEC support and CI updates
Diffstat (limited to 'examples/io/system573/iso.xml')
| -rw-r--r-- | examples/io/system573/iso.xml | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/examples/io/system573/iso.xml b/examples/io/system573/iso.xml index 09b4d85..0bb84d5 100644 --- a/examples/io/system573/iso.xml +++ b/examples/io/system573/iso.xml @@ -16,16 +16,26 @@ <directory_tree> <!-- - The System 573 BIOS does not parse SYSTEM.CNF, it always looks - for an executable named PSX.EXE. Note that this behavior can be - abused to make multi-system CDs with different executables for - PS1 and 573 (i.e. have both PSX.EXE and SYSTEM.CNF pointing to - a different executable). + The System 573 BIOS does not parse SYSTEM.CNF, it's instead + hardcoded to look for an executable named PSX.EXE. Some modded + or hacked BIOS variants may instead look for slightly altered + file names (QSY.DXD, SSW.BXF, TSV.AXG) as an obfuscation + measure, so it's recommended to have multiple copies of the + executable on the disc. + + Note that this behavior can be abused to make multi-system CDs + with different executables for PS1 and 573 (i.e. have both + PSX.EXE as the 573 executable and SYSTEM.CNF pointing to the + PS1 executable). --> <!--<file name="SYSTEM.CNF" type="data" source="${PROJECT_SOURCE_DIR}/system.cnf" />--> <file name="PSX.EXE" type="data" source="system573.exe" /> <file name="PSX.MAP" type="data" source="system573.map" /> + <file name="QSY.DXD" type="data" source="system573.exe" /> + <file name="SSW.BXF" type="data" source="system573.exe" /> + <file name="TSV.AXG" type="data" source="system573.exe" /> + <dummy sectors="1024"/> </directory_tree> </track> |
