decompress.ld
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:0k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. OUTPUT_FORMAT(elf32-us-cris)
  2. MEMORY 
  3. {
  4. dram : ORIGIN = 0x40700000,
  5.        LENGTH = 0x00100000
  6. }
  7. SECTIONS
  8. {
  9. .text :
  10. {
  11. _stext = . ;
  12. *(.text)
  13. *(.rodata)
  14. _etext = . ;
  15. } > dram
  16. .data :
  17. {
  18. *(.data)
  19. _edata = . ;
  20. } > dram
  21. .bss :
  22. {
  23. *(.bss)
  24. _end = ALIGN( 0x10 ) ;
  25. } > dram
  26. }