Skip to content

Commit

Permalink
Fix the start address of the system directory (#195)
Browse files Browse the repository at this point in the history
  • Loading branch information
stblr authored Jul 8, 2022
1 parent 7f5bb83 commit 1122132
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions mkwutil/sections.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,7 @@ def __contains__(self, key) -> bool:
REL_SECTION_IDX = [1, 2, 3, 4, 5, 6]

REL_DIRS = [
Slice(name="REL/JMAP", start=0x80510B84, stop=0x80518CC0, section="text"),
Slice(name="REL/SYSTEM", start=0x80518CC0, stop=0x80553788, section="text"),
Slice(name="REL/SYSTEM", start=0x805103B4, stop=0x80553788, section="text"),
Slice(name="REL/SCENE", start=0x80553788, stop=0x8055531C, section="text"),
Slice(name="REL/KART", start=0x805672CC, stop=0x805B9010, section="text"),
Slice(name="REL/UI", start=0x805B9300, stop=0x80653208, section="text"),
Expand Down

0 comments on commit 1122132

Please sign in to comment.