Skip to content

Commit

Permalink
Merge pull request #1818 from c1728p9/k64f_memory_map
Browse files Browse the repository at this point in the history
Update K64F memory map for for larger static data
  • Loading branch information
0xc0170 committed May 31, 2016
2 parents a8d2fa6 + c730c63 commit cb6300e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ SECTIONS
KEEP(*(.jcr*))
. = ALIGN(4);
__data_end__ = .; /* define a global symbol at data end */
} > m_data
} > m_data_2

__DATA_END = __DATA_ROM + (__data_end__ - __data_start__);
text_end = ORIGIN(m_text) + LENGTH(m_text);
Expand All @@ -225,7 +225,7 @@ SECTIONS
. = ALIGN(4);
__bss_end__ = .;
__END_BSS = .;
} > m_data
} > m_data_2

.heap :
{
Expand Down

0 comments on commit cb6300e

Please sign in to comment.