From 36089d20ca1f7c57f36c4172759a5084bdf87a3a Mon Sep 17 00:00:00 2001 From: dzwdz Date: Wed, 21 Jul 2021 21:31:52 +0200 Subject: barebones syscall --- src/init/linker.ld | 1 + 1 file changed, 1 insertion(+) (limited to 'src/init/linker.ld') 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) -- cgit v1.2.3