diff options
author | Freya Murphy <freya@freyacat.org> | 2025-03-25 17:41:18 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-03-25 17:41:18 -0400 |
commit | f89a4592c973a798ec47eb07b3701844d9ede54e (patch) | |
tree | 6ed2969f501aca686612700c336951c0d0f8deca /boot | |
parent | initial checkout from wrc (diff) | |
download | comus-f89a4592c973a798ec47eb07b3701844d9ede54e.tar.gz comus-f89a4592c973a798ec47eb07b3701844d9ede54e.tar.bz2 comus-f89a4592c973a798ec47eb07b3701844d9ede54e.zip |
convert build system to zig
Diffstat (limited to 'boot')
-rw-r--r-- | boot/boot.ld | 9 |
1 files changed, 9 insertions, 0 deletions
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.*) } +} |