fix gba multiboot linkscript

This commit is contained in:
Dave Murphy 2011-07-01 14:44:34 +00:00
parent 880a788fa3
commit 69d97d561d

View File

@ -183,13 +183,13 @@ SECTIONS
.data ALIGN(4) : AT (__data_lma)
{
__data_start = ABSOLUTE(.);
__data_start__ = ABSOLUTE(.);
*(.data)
*(.data.*)
*(.gnu.linkonce.d*)
CONSTRUCTORS
. = ALIGN(4); /* REQUIRED. LD is flaky without it. */
__data_end = ABSOLUTE(.);
__data_end__ = ABSOLUTE(.);
} >iwram = 0xff
__iwram_overlay_lma = __data_lma + SIZEOF(.data);