1SECTIONS {
2        .text 0x100 :             { *(.text) }
3	.data 0x100 : AT (0x100)  { *(.data) }
4	.bss  0x100 : AT (0x4000) { *(.bss)  }
5}
6
7