From 19418efb9243404bcba631dbe9b955aceb822471 Mon Sep 17 00:00:00 2001 From: rozlette Date: Thu, 26 Sep 2019 22:34:24 -0500 Subject: [PATCH] remove .bss in boot address range --- tables/files.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tables/files.py b/tables/files.py index 06b6ca8c05..ae0f23d8d5 100644 --- a/tables/files.py +++ b/tables/files.py @@ -1,7 +1,7 @@ # Follows the format of (File Location, Name, Start Address, .data/.rodata Segments (Start, End Inclusive)) # TODO split .data & .rodata? Add .bss sections? { - ('baserom/boot', 'boot', 0x80080060, ((0x800969C0, 0x800A5ABF),)), + ('baserom/boot', 'boot', 0x80080060, ((0x800969C0, 0x800994FF),)), ('decomp/code', 'code', 0x800A5AC0, ((0x80186028, 0x80186A6F),(0x801AAAB0, 0x801E3F9F),)), ('decomp/ovl_title', 'ovl_title', 0x80800000, ((0x80800860, 0x8080090F),)), ('decomp/ovl_select', 'ovl_select', 0x80800910, ((0x80801C80, 0x80803DEF),)),