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