Skip to content

Commit

Permalink
global memory range
Browse files Browse the repository at this point in the history
  • Loading branch information
AngheloAlf committed Jul 4, 2024
1 parent d42635a commit bb223f3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
### 0.24.5

* New yaml option: `global_vram_start` and `global_vram_end`.
* Allow specifying that the global segment may be larger than what was automatically detected.
* Allow specifying that the global memory range may be larger than what was automatically detected.
* Useful for projects where splat is used in multiple individual files, meaning the expected global segment may not be properly detected because each instance of splat can't see the info from other files (like in PSX and PSP projects).

### 0.24.4
Expand Down
2 changes: 1 addition & 1 deletion docs/Configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@ Don't skip disassembling already matched functions and migrated sections

### global_vram_start and global_vram_end

Allow specifying that the global segment may be larger than what was automatically detected.
Allow specifying that the global memory range may be larger than what was automatically detected.

Useful for projects where splat is used in multiple individual files, meaning the expected global segment may not be properly detected because each instance of splat can't see the info from other files, like in PSX and PSP projects.

Expand Down
2 changes: 1 addition & 1 deletion src/splat/util/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ class SplatOpts:
detect_redundant_function_end: bool
# Don't skip disassembling already matched functions and migrated sections
disassemble_all: bool
# Allow specifying that the global segment may be larger than what was automatically detected.
# Allow specifying that the global memory range may be larger than what was automatically detected.
# Useful for projects where splat is used in multiple individual files, meaning the expected global segment may not be properly detected because each instance of splat can't see the info from other files.
global_vram_start: Optional[int]
global_vram_end: Optional[int]
Expand Down

0 comments on commit bb223f3

Please sign in to comment.