From 1ae3c5b8a566758f6bb0c74e27a093b8818addef Mon Sep 17 00:00:00 2001 From: Agnosto Dvonik Date: Sat, 17 Feb 2024 17:48:08 -0500 Subject: [PATCH] linker file --- boot/link.ld | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 boot/link.ld diff --git a/boot/link.ld b/boot/link.ld new file mode 100644 index 0000000..2bb394a --- /dev/null +++ b/boot/link.ld @@ -0,0 +1,9 @@ +OUTPUT_FORMAT(elf32-i386) +ENTRY(_start) +SECTIONS +{ + . = 0x100000; + .text : {*(.text)} + .data : {*(.data)} + .bss : {*(.bss)} +}