-
Notifications
You must be signed in to change notification settings - Fork 38
/
structure.txt
36 lines (34 loc) · 1.81 KB
/
structure.txt
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
Folder structure:
build - Paste your original CTR rom in this folder to build and play sample mods
decompile - Functions decompiled from CTR that can be rebuilt and modified
ghidra - Commented disassembler output of 90% of the game's source code
include - The project's includes: all the structs and globals in CTR and psn00bsdk
mods - Finished code modifications for CTR
├── ModPacks - Combinations of other mods
├── Modules - Mods that you can combine with other mods
├── Patches - Original code modifications that can be included in any mod with relatively no risk of overlap
├── Standalones - Mods that are designed to be played without other mods
├── Tests - Programming tests and other miscellaneous mods
├── Tutorials - Basic mods you can learn from
├── v2 - Early CTR mods
└── Windows - Mods that require external Windows programs
plugins - Third-party programs and extensions added to the modding toolchain. See psx-modding-toolchain's documentation for more info
syms - Symbol tables for all game regions
tools - Miscellaneous tools for making mods
8bitnop.bin
config.json - See psx-modding-toolchain's documentation for more info
disc.json - See psx-modding-toolchain's documentation for more info
nop.s
readme.txt - You're here!
Code names for supported builds:
903 - September 03 - USA Prototype #3, henceforth referred to as SepReview
926 - September 26 - USA Retail
1006 - October 06 - Japan Taikenban Demo, henceforth referred to as JpnTrial
1020 - October 20 - Europe Retail
1111 - November 11 - Japan Retail
Rename your CTR iso in the build folder to the following:
-If retail NTSC-U, rename to "ctr-u.bin"
-If retail PAL, rename to "ctr-pal.bin"
-If retail NTSC-J, rename to "ctr-j.bin"
-If September 3 prototype, rename to "ctr-sep3.bin"
-If Taikenban demo, rename to "ctr-j-trial.bin"