summaryrefslogtreecommitdiff
path: root/linker.ld
diff options
context:
space:
mode:
authorthe lemons <citrons@mondecitronne.com>2021-04-10 01:59:09 -0500
committerthe lemons <citrons@mondecitronne.com>2021-04-10 01:59:09 -0500
commitbaa4b6cf54364d0333ece9539d9cd8cd66b23a39 (patch)
tree4b108a372ac6fd52c5292886088ddc4891933d9b /linker.ld
parent6626a1ecee2759d6fb71e72cc95b22bd6af22875 (diff)
refactor interrupt handling (and do other things)
Diffstat (limited to 'linker.ld')
-rw-r--r--linker.ld4
1 files changed, 4 insertions, 0 deletions
diff --git a/linker.ld b/linker.ld
index cd22338..22a3ab1 100644
--- a/linker.ld
+++ b/linker.ld
@@ -6,6 +6,8 @@ SECTIONS
/* Begin at 1 MiB */
. = 1M;
+ __kernel_start = .;
+
/* Multiboot header */
.text BLOCK(4K) : ALIGN(4K)
{
@@ -23,4 +25,6 @@ SECTIONS
*(COMMON)
*(.bss)
}
+
+ __kernel_end = .;
}