diff options
author | dzwdz | 2021-07-21 21:31:52 +0200 |
---|---|---|
committer | dzwdz | 2021-07-21 21:31:52 +0200 |
commit | 36089d20ca1f7c57f36c4172759a5084bdf87a3a (patch) | |
tree | ac31e75f3379e0dcad6cb98f23cba6cbce236380 /src/init/linker.ld | |
parent | 46fb83d6eb44b5d52520783570dc40b7ef25260b (diff) |
barebones syscall
Diffstat (limited to 'src/init/linker.ld')
-rw-r--r-- | src/init/linker.ld | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/init/linker.ld b/src/init/linker.ld index 9f3f4b5..a59308d 100644 --- a/src/init/linker.ld +++ b/src/init/linker.ld @@ -6,6 +6,7 @@ SECTIONS . = 2M; .text BLOCK(4K) : ALIGN(4K) { + *(.text.startup) *(.text) } .rodata BLOCK(4K) : ALIGN(4K) |