Inject globals file into ROM

This commit is contained in:
Ryan Dwyer 2019-09-22 20:45:49 +10:00
parent 1b552e8ab6
commit 01fb7c3ccc
2 changed files with 4 additions and 2 deletions

View File

@ -180,7 +180,7 @@ testall:
all: setup lang globals
rom: $(B_SETUP_BINZ_FILES)
rom: $(B_SETUP_BINZ_FILES) $(B_DIR)/Uglobals
tools/inject pd.$(ROMID).z64
clean:

View File

@ -34,7 +34,9 @@ class Injector:
self.rompart3 = rombuffer[0x001a15c0:0x00ed83a0]
self.rompart4 = rombuffer[0x01d5ca00:]
globals = self.rareunzip(rombuffer[0x39850:])
fp = open('build/ntsc-final/Uglobals', 'rb')
globals = fp.read()
fp.close()
self.globaltop = globals[0:0x28080]
self.globalbot = globals[0x2a000:]