aboutsummaryrefslogtreecommitdiffstats
path: root/src/rombios32.lds.S
diff options
context:
space:
mode:
Diffstat (limited to 'src/rombios32.lds.S')
-rw-r--r--src/rombios32.lds.S3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/rombios32.lds.S b/src/rombios32.lds.S
index 532317e2..312850a0 100644
--- a/src/rombios32.lds.S
+++ b/src/rombios32.lds.S
@@ -19,8 +19,7 @@ SECTIONS
.text : { *(.text) }
.rodata : { *(.rodata) }
.data : { *(.data) }
- // XXX - should change code so it doesn't require global variables.
- . = 0x00040000;
+ . = BUILD_BSS_ADDR;
__bss_start = . ;
.bss : { *(.bss) *(COMMON) }
__bss_end = . ;