summaryrefslogtreecommitdiff
path: root/link.ld
diff options
context:
space:
mode:
authorAiden Gall <aiden@aidengall.xyz>2024-05-26 22:22:14 +0100
committerAiden Gall <aiden@aidengall.xyz>2024-05-26 22:22:14 +0100
commitad8ab9b672d9f040f84b9933878b22fb291e41e7 (patch)
tree8bc093e045723f8f5c234150a407760189ce8e05 /link.ld
parent5ebc67833086eccb3c3b1708745c927d5bcfd811 (diff)
add primitive vga terminal outputHEADmaster
Diffstat (limited to 'link.ld')
-rw-r--r--link.ld6
1 files changed, 3 insertions, 3 deletions
diff --git a/link.ld b/link.ld
index 11536c8..6721c00 100644
--- a/link.ld
+++ b/link.ld
@@ -6,15 +6,15 @@ KERNEL_VMA = 0x100000;
SECTIONS {
. = 0x7c00;
- .text.boot : {
- boot/boot.o (.text.boot)
+ .boot : {
+ boot/boot.o (.boot)
_boot_end = .;
}
. = KERNEL_VMA;
.text : AT(_boot_end) {
- *(.text.startup)
*(.text)
+ *(.text.*)
*(.rodata*)
. = ALIGN(0x1000);
}