1ENTRY(main)
2
3SECTIONS
4{
5  . = 0x100 + SIZEOF_HEADERS;
6  .text : { *(.text) }
7  .data : { *(.data) }
8}
9