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. --- usrbin/link.ld | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 usrbin/link.ld (limited to 'usrbin/link.ld') diff --git a/usrbin/link.ld b/usrbin/link.ld new file mode 100644 index 0000000..c1a7a42 --- /dev/null +++ b/usrbin/link.ld @@ -0,0 +1,8 @@ +OUTPUT_FORMAT(binary) +SECTIONS +{ + . = 0x100000; + .text : { *(.entry); .*(.text) } + .data : { *(.data) } + .bss : { *(.bss) } +} -- cgit v1.3