diff options
| author | Jake Mannens <jake72360@gmail.com> | 2018-06-24 02:27:22 +1000 |
|---|---|---|
| committer | Jake Mannens <jake72360@gmail.com> | 2018-06-24 02:27:22 +1000 |
| commit | 97d3551106495fa18969e2690720b621ba5a9c0b (patch) | |
| tree | 76967873f1f4209b940eadc77753bd67ef65e0b1 /usrbin/link.ld | |
| parent | acba87c1e946118f0ba4308a7211199cf9b7cbb2 (diff) | |
Re-structured the source tree and modified makefiles accordingly.
Hopefully further separation will help to keep the code readable and
understandable.
Diffstat (limited to 'usrbin/link.ld')
| -rw-r--r-- | usrbin/link.ld | 8 |
1 files changed, 8 insertions, 0 deletions
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) } +} |
