sim.ld 294 B

12345678910111213
  1. /* Linker script for the gdb v850e simulator (CONFIG_V850E_SIM). */
  2. MEMORY {
  3. /* Interrupt vectors. */
  4. INTV : ORIGIN = 0x0, LENGTH = 0xe0
  5. /* Main RAM. */
  6. RAM : ORIGIN = RAM_ADDR, LENGTH = RAM_SIZE
  7. }
  8. SECTIONS {
  9. .intv : { INTV_CONTENTS } > INTV
  10. .ram : { RAMK_KRAM_CONTENTS } > RAM
  11. }