aboutsummaryrefslogtreecommitdiff
path: root/kernel/hello.ld
blob: e4af45912707a6c51f50e5a61d0aee17434f9062 (plain)
1
2
3
4
5
6
7
8
9
MEMORY {
  kernel_space (rwx) : ORIGIN = 0x80200000, LENGTH = 128
}

SECTIONS {
  .text : {
    hello.o(.text.kernel)
  } > kernel_space
}