mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-24 00:31:34 +11:00
change implicit data to ewram
This commit is contained in:
parent
65b97f7546
commit
c85331ddf6
6
gba.ld
6
gba.ld
|
@ -37,9 +37,6 @@ SECTIONS {
|
||||||
*(.iwram .iwram.*);
|
*(.iwram .iwram.*);
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
|
|
||||||
*(.data .data.*);
|
|
||||||
. = ALIGN(4);
|
|
||||||
|
|
||||||
*(.text_iwram .text_iwram.*);
|
*(.text_iwram .text_iwram.*);
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
|
|
||||||
|
@ -55,6 +52,9 @@ SECTIONS {
|
||||||
*(.ewram .ewram.*);
|
*(.ewram .ewram.*);
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
|
|
||||||
|
*(.data .data.*);
|
||||||
|
. = ALIGN(4);
|
||||||
|
|
||||||
__ewram_data_end = ABSOLUTE(.);
|
__ewram_data_end = ABSOLUTE(.);
|
||||||
} > ewram AT>rom
|
} > ewram AT>rom
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue