summaryrefslogtreecommitdiff
path: root/usrbin/link.ld
blob: c1a7a4240316cc648e38b5a2cba0a8139778e800 (plain)
1
2
3
4
5
6
7
8
OUTPUT_FORMAT(binary)
SECTIONS
{
  . = 0x100000;
  .text : { *(.entry); .*(.text) }
  .data : { *(.data) }
  .bss : { *(.bss) }
}