anna-rom.ld 446 B

12345678910111213141516
  1. /* Linker script for the Midas labs Anna V850E2 evaluation board
  2. (CONFIG_V850E2_ANNA), with kernel in ROM (CONFIG_ROM_KERNEL). */
  3. MEMORY {
  4. /* 8MB of flash ROM. */
  5. ROM : ORIGIN = 0, LENGTH = 0x00800000
  6. /* 1MB of static RAM. This memory is mirrored 64 times. */
  7. SRAM : ORIGIN = SRAM_ADDR, LENGTH = SRAM_SIZE
  8. /* 64MB of DRAM. */
  9. SDRAM : ORIGIN = SDRAM_ADDR, LENGTH = SDRAM_SIZE
  10. }
  11. SECTIONS {
  12. ROMK_SECTIONS(ROM, SRAM)
  13. }