Advertisement
Guest User

linker.ld

a guest
Mar 12th, 2012
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. /* rammap */
  2. MEMORY
  3. {
  4. ram : ORIGIN = 0x80000000, LENGTH = 1024M
  5. }
  6.  
  7. SECTIONS
  8. {
  9. .exceptionvector : {
  10. exceptionvector = ABSOLUTE(.);
  11. *(.exceptionvector)
  12. } > ram
  13. .text : { *(.text) } > ram
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement