Align EWRAM and IWRAM data-filled sections to 4 bytes (#5512)
This commit is contained in:
parent
c82ff7b5b1
commit
a01f9b4708
2 changed files with 4 additions and 0 deletions
|
@ -18,6 +18,7 @@ SECTIONS {
|
|||
{
|
||||
__ewram_start = .;
|
||||
*(.ewram*)
|
||||
. = ALIGN(4);
|
||||
__ewram_end = .;
|
||||
} > EWRAM
|
||||
|
||||
|
@ -38,6 +39,7 @@ SECTIONS {
|
|||
{
|
||||
__iwram_start = .;
|
||||
*(.iwram*);
|
||||
. = ALIGN(4);
|
||||
__iwram_end = .;
|
||||
} > IWRAM
|
||||
|
||||
|
|
|
@ -19,6 +19,7 @@ SECTIONS {
|
|||
{
|
||||
__ewram_start = .;
|
||||
*(.ewram*)
|
||||
. = ALIGN(4);
|
||||
__ewram_end = .;
|
||||
} > EWRAM
|
||||
|
||||
|
@ -34,6 +35,7 @@ SECTIONS {
|
|||
{
|
||||
__iwram_start = .;
|
||||
*(.iwram*);
|
||||
. = ALIGN(4);
|
||||
__iwram_end = .;
|
||||
} > IWRAM
|
||||
|
||||
|
|
Loading…
Reference in a new issue