Created
July 15, 2019 12:54
-
-
Save the6p4c/df6bbe846dc982c445050ffaf6223171 to your computer and use it in GitHub Desktop.
Revisions
-
the6p4c created this gist
Jul 15, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,18 @@ /* !heavily! work in progress */ MEMORY { ram (rwx) : org = 0x00000000, l = 64K user (rx) : org = 0xFFF80000, l = 512K } SECTIONS { .text : { *(.text) *(.text*) *(.rodata) *(.rodata*) } > user .vector_table 0xFFFFFF80 : { *(.vector_table) } > user }