aboutsummaryrefslogtreecommitdiff
path: root/linker.ld
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2022-01-31 19:05:50 -0700
committerChristian Cunningham <cc@localhost>2022-01-31 19:05:50 -0700
commita1f49718aee378fa075303c86106309091d56b80 (patch)
treedaa43fe9db527b69bc3b5e9cd967e6e5de5f5e29 /linker.ld
parent09d5025fc34644a6e04380a61da15ba5d8e3f775 (diff)
Break exceptions off to own files
Diffstat (limited to 'linker.ld')
-rw-r--r--linker.ld1
1 files changed, 1 insertions, 0 deletions
diff --git a/linker.ld b/linker.ld
index 17c951a..474bdeb 100644
--- a/linker.ld
+++ b/linker.ld
@@ -9,6 +9,7 @@ SECTIONS
.text :
{
KEEP(*(.text.boot))
+ KEEP(*(.text.exceptions))
KEEP(*(.text.kernel))
*(.text*)
}