Home | History | Annotate | Download | only in ld-scripts
      1 MEMORY
      2 {
      3   ram : ORIGIN = 0x10000, LENGTH = 0x10000
      4 }
      5 
      6 SECTIONS
      7 {
      8   .text : {*(.text)} > ram AT> ram
      9   .data : ALIGN (16) {*(.data)} > ram AT> ram
     10   /DISCARD/ : {*(*)}
     11 }
     12