unknown_003260.c data section

This commit is contained in:
David Benepe
2021-05-27 19:19:58 -07:00
committed by Antonio Castelli
parent 2a38afd7ef
commit a2f2e6e2f2
3 changed files with 85 additions and 57 deletions
+2 -1
View File
@@ -75,7 +75,8 @@ class GenerateLD:
def gen_data_section(self):
self.gen_line('.main_data 0x80000400 : AT(romPos) SUBALIGN(16)')
self.gen_open_block()
self.gen_line(BUILD_DIR + '/src/unknown_001050.o(.data);')
for file in self.files:
self.gen_line(file[0] + '(.data);')
self.gen_line(BUILD_DIR + '/data/dkr.data.o(.data);')
self.gen_close_block()
self.gen_line('romPos += SIZEOF(.main_data);')