as85ep1-rom.ld 681 B

123456789101112131415161718192021
  1. /* Linker script for the NEC AS85EP1 V850E evaluation board
  2. (CONFIG_V850E_AS85EP1), with kernel in ROM (CONFIG_ROM_KERNEL). */
  3. MEMORY {
  4. /* 4MB of flash ROM. */
  5. ROM : ORIGIN = 0, LENGTH = 0x00400000
  6. /* 1MB of static RAM. */
  7. SRAM : ORIGIN = SRAM_ADDR, LENGTH = SRAM_SIZE
  8. /* About 58MB of DRAM. This can actually be at one of two
  9. positions, determined by jumper JP3; we have to use the first
  10. position because the second is partially out of processor
  11. instruction addressing range (though in the second position
  12. there's actually 64MB available). */
  13. SDRAM : ORIGIN = SDRAM_ADDR, LENGTH = SDRAM_SIZE
  14. }
  15. SECTIONS {
  16. ROMK_SECTIONS(ROM, SRAM)
  17. }