anna.ld 630 B

1234567891011121314151617181920
  1. /* Linker script for the Midas labs Anna V850E2 evaluation board
  2. (CONFIG_V850E2_ANNA). */
  3. MEMORY {
  4. /* 256KB of internal memory (followed by one mirror). */
  5. iMEM0 : ORIGIN = 0, LENGTH = 0x00040000
  6. /* 256KB of internal memory (followed by one mirror). */
  7. iMEM1 : ORIGIN = 0x00040000, LENGTH = 0x00040000
  8. /* 1MB of static RAM. This memory is mirrored 64 times. */
  9. SRAM : ORIGIN = SRAM_ADDR, LENGTH = SRAM_SIZE
  10. /* 64MB of DRAM. */
  11. SDRAM : ORIGIN = SDRAM_ADDR, LENGTH = SDRAM_SIZE
  12. }
  13. SECTIONS {
  14. .intv : { INTV_CONTENTS } > iMEM0
  15. .sram : { RAMK_KRAM_CONTENTS } > SRAM
  16. .root : { ROOT_FS_CONTENTS } > SDRAM
  17. }