Last active
March 25, 2016 07:49
-
-
Save AlexanderSavochkin/254139caa73532a3f151 to your computer and use it in GitHub Desktop.
LPC1114 minimalistic linker script
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 characters
/* useful reference: www.linuxselfhelp.com/gnu/ld/html_chapter/ld_toc.html */ | |
MEMORY | |
{ | |
flash : org = 0x00000000, len = 32k | |
} | |
SECTIONS | |
{ | |
. = ORIGIN(flash); | |
.text : { | |
*(.vectors); /* The interrupt vectors */ | |
*(.text); | |
} >flash | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment