1 ENTRY(RAM) 2 3 MEMORY 4 { 5 ram (rwx) : ORIGIN = 0, LENGTH = 0x1000000 6 } 7 8 SECTIONS 9 { 10 .text : { } >ram 11 } 12 RAM = ADDR(ram); 13