Added __BSS_SECTION_SIZE to entrypoint.s

This commit is contained in:
David Benepe
2021-06-10 20:23:08 -05:00
parent 7f454230f0
commit 3064ca2254
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -134,7 +134,7 @@ class GenerateLD:
self.gen_newline()
def gen_bss_section(self):
self.gen_line('__BSS_SECTION_SIZE = SIZEOF(.bss.noload);')
self.gen_line('__BSS_SECTION_SIZE = SIZEOF(.bss.noload) - 0x10;')
self.gen_newline()
self.gen_line('.bss.noload . (NOLOAD): SUBALIGN(4)')
self.gen_open_block()