summaryrefslogtreecommitdiff
path: root/src/kernel/link.ld
blob: 7d160f2ad02dba131092b74fd78514d0d7492f56 (plain) (blame)
1
2
3
4
5
6
7
8
SECTIONS {
  . = 0x01000000;
  .mb_header : ALIGN(8)   { *(.mb_header) }
  .text      : ALIGN(512) { *(.text)      }
  .rodata    : ALIGN(512) { *(.rodata)    }
  .data      : ALIGN(512) { *(.data)      }
  .bss       : ALIGN(512) { *(.bss) }
}