-
Notifications
You must be signed in to change notification settings - Fork 0
/
iso.xml
64 lines (60 loc) · 3.21 KB
/
iso.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<iso_project>
<track type="data">
<!--
The "volume", "volume_set", "publisher", "data_preparer" and
"copyright" strings below can be freely modified. The ISO9660
specification, however, imposes the following limitations:
- "volume" and "volume_set" must be 32 characters or less, and can
only contain uppercase letters, digits and underscores.
- "publisher" and "data_preparer" can be up to 128 characters long
and can additionally contain spaces and some special characters.
- "copyright" should be a path to a file on the disc, even one that
does not exist (but in practice it can be set to anything).
"system" and "application" must always be set to "PLAYSTATION" in
order for the disc to be recognized as valid.
-->
<identifiers system="PLAYSTATION" volume="PSXMC" volume_set="PSXMC" publisher="ENGINEERSBOX" data_preparer="PSN00BSDK ${PSN00BSDK_VERSION}" application="PLAYSTATION" copyright="LICENSE;1" />
<!--
You may optionally include a license file using the <license> tag.
Some consoles, particularly Japanese or PAL models with a modchip,
require the disc to contain valid license data and will refuse to
boot if it is missing. License files are usually not required on
US consoles or when booting via softmods or cheat cartridges.
License files are region-specific and are not distributed with
PSn00bSDK for obvious reasons, but can be dumped from an official
game using dumpsxiso or extracted from the Sony SDK.
-->
<!--<license file="${PROJECT_SOURCE_DIR}/license.dat" />-->
<!--
Files and directories can be added to the disc by placing <file>
and <dir> tags below. All file names are case-insensitive and must
be in 8.3 format, i.e. no more than 8 characters for the name and 3
for the optional extension. Directories cannot have extensions.
A boot configuration file (SYSTEM.CNF) or executable (PSX.EXE) must
be present in the root directory. Due to BIOS limitations the root
directory cannot hold more than 30 files or directories, and the
entire disc must contain 45 directories or less. Subdirectories can
contain any number of files.
-->
<directory_tree>
<file name="SYSTEM.CNF" type="data" source="${PROJECT_SOURCE_DIR}/system.cnf" />
<file name="PSXMC.EXE" type="data" source="PSXMC.exe" />
<file name="STATIC.LZP" type="data" source="static.lzp" />
<file name="GUI.LZP" type="data" source="gui.lzp" />
<!--
This file is only required if you are using dynamic linking
(see the system/dynlink example). It contains the executable's
symbol map and can be used to obtain the address of a function
or global variable by its name.
-->
<!--<file name="TEMPLATE.MAP" type="data" source="template.map" />-->
</directory_tree>
</track>
<!--
CD-DA tracks can be added to the CD image by using one or more <track>
tags. The source attribute must be a path to an audio file in WAV, FLAC
or MP3 format (using WAV or FLAC is highly recommended to preserve
audio quality if you have a lossless copy of the source track).
-->
<!--<track type="audio" source="${PROJECT_SOURCE_DIR}/track2.wav" />-->
</iso_project>