From ad8ab9b672d9f040f84b9933878b22fb291e41e7 Mon Sep 17 00:00:00 2001 From: Aiden Gall Date: Sun, 26 May 2024 22:22:14 +0100 Subject: add primitive vga terminal output --- link.ld | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'link.ld') 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); } -- cgit v1.2.3