mirror of
https://github.com/italicsjenga/agb.git
synced 2025-01-23 23:56:34 +11:00
change implicit data to ewram
This commit is contained in:
parent
65b97f7546
commit
c85331ddf6
1 changed files with 3 additions and 3 deletions
6
gba.ld
6
gba.ld
|
@ -37,9 +37,6 @@ SECTIONS {
|
|||
*(.iwram .iwram.*);
|
||||
. = ALIGN(4);
|
||||
|
||||
*(.data .data.*);
|
||||
. = ALIGN(4);
|
||||
|
||||
*(.text_iwram .text_iwram.*);
|
||||
. = ALIGN(4);
|
||||
|
||||
|
@ -55,6 +52,9 @@ SECTIONS {
|
|||
*(.ewram .ewram.*);
|
||||
. = ALIGN(4);
|
||||
|
||||
*(.data .data.*);
|
||||
. = ALIGN(4);
|
||||
|
||||
__ewram_data_end = ABSOLUTE(.);
|
||||
} > ewram AT>rom
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue