From 248e1fb5facd08a48819133b8a31da7f5b7e2ae5 Mon Sep 17 00:00:00 2001 From: vanten-s Date: Tue, 26 Mar 2024 20:49:17 +0100 Subject: [PATCH] Oopsie, linkerscript markdown thing exists --- log/2024-03-26.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/log/2024-03-26.md b/log/2024-03-26.md index 2daaf68..09c5bd6 100644 --- a/log/2024-03-26.md +++ b/log/2024-03-26.md @@ -216,7 +216,7 @@ In order to combine `boot.s` and the kernel we need to do something called "link ## For an operating system I have to combine `boot.s` and the kernel in a specific way to preserve the multiboot header. To do this I can create a *linker script* that tells the linker how to link the object files. To do this I created a file called `linker.ld` in the repository root, which contains this: -```linker +```linkerscript /* The bootloader will look at this image and start execution at the symbol designated as the entry point. */ ENTRY(_start)