From 97d3551106495fa18969e2690720b621ba5a9c0b Mon Sep 17 00:00:00 2001 From: Jake Mannens Date: Sun, 24 Jun 2018 02:27:22 +1000 Subject: Re-structured the source tree and modified makefiles accordingly. Hopefully further separation will help to keep the code readable and understandable. --- link.ld | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 link.ld (limited to 'link.ld') diff --git a/link.ld b/link.ld new file mode 100644 index 0000000..21c9b7c --- /dev/null +++ b/link.ld @@ -0,0 +1,10 @@ +OUTPUT_FORMAT(elf32-i386) +ENTRY(kboot) +SECTIONS +{ + . = 0; + .mboothdr : { *(.mboothdr) } + .text : { *(.text) } + .data : { *(.data) } + .bss : { *(.bss) } +} -- cgit v1.3