From f89a4592c973a798ec47eb07b3701844d9ede54e Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Tue, 25 Mar 2025 17:41:18 -0400 Subject: convert build system to zig --- boot/boot.ld | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 boot/boot.ld (limited to 'boot/boot.ld') diff --git a/boot/boot.ld b/boot/boot.ld new file mode 100644 index 0000000..e6fc072 --- /dev/null +++ b/boot/boot.ld @@ -0,0 +1,9 @@ +OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386") +OUTPUT_ARCH(i386) +ENTRY(bootentry) + +SECTIONS +{ + . = 0x0; + .text : { *(.text .stub .text.*) } +} -- cgit v1.2.3-freya