Cleanup and reorganization

This commit is contained in:
Zac 2024-04-29 23:37:56 +00:00 committed by GitHub
parent 56e541229f
commit cb723c7c38
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 13 additions and 10 deletions

7
.gitignore vendored
View File

@ -8,11 +8,12 @@ docs/
functions.txt
# Splat files
splat/
assets/
asm/
c/
undefined_funcs*.txt
undefined_syms*.txt
asm/
assets/
c/
## Binary/object products
**/bin/

View File

@ -129,8 +129,10 @@ When you build the executable, the following directories will be created:
When you use splat to split the elf, the following directories will be created:
* `asm` - Disassembled assembly code for each segment.
* `assets`- Binary data extracted from the elf.
* `splat` - Output of the binary splitting tool.
* `asm` - Disassembled assembly code.
* `src` - Generated C files.
## FAQ

View File

@ -9,8 +9,8 @@ options:
platform: ps2
compiler: GCC
asm_path: asm
src_path: c
asm_path: splat/release/asm
src_path: splat/release/src
build_path: build
find_file_boundaries: False
@ -58,10 +58,10 @@ segments:
# P2 sources
#----------------------------------------
- [0x0491A0, c, P2/coin]
- [0x049400, asm]
- [0x049400, asm] # TBD
- [0x0eb408, c, P2/util]
- [0x0ec518, asm]
- [0x0ec518, asm] # TBD
#----------------------------------------

View File

@ -9,8 +9,8 @@ options:
platform: ps2
compiler: GCC
asm_path: asm
src_path: c
asm_path: splat/may19/asm
src_path: splat/may19/src
build_path: build
find_file_boundaries: False