From bb223f31c8a4c414fdf7bf55e51ca5ba539363ca Mon Sep 17 00:00:00 2001 From: angie Date: Thu, 4 Jul 2024 14:19:05 -0400 Subject: [PATCH] global memory range --- CHANGELOG.md | 2 +- docs/Configuration.md | 2 +- src/splat/util/options.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 23c22e4e..fc7514d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/docs/Configuration.md b/docs/Configuration.md index 7b4197a4..afc679e4 100644 --- a/docs/Configuration.md +++ b/docs/Configuration.md @@ -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. diff --git a/src/splat/util/options.py b/src/splat/util/options.py index a59ecff5..e610acba 100644 --- a/src/splat/util/options.py +++ b/src/splat/util/options.py @@ -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]