aboutsummaryrefslogtreecommitdiff
path: root/estorm/estorm.lds
blob: 92e294b66fc6ef01e986f2082c16381ae9c2c792 (plain)
1
2
3
4
5
6
7
8
9
10
SECTIONS
{
  . = 0x00200000;
  . = ALIGN(4);
  ENTRY(reset);
  .crt : { crt0.o(.text) }
  .text : { *(EXCLUDE_FILE (*crt0.o) .text) }
  .data : { *(.data) }
  .bss : { *(.bss) }
}