aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/linker.ld
diff options
context:
space:
mode:
Diffstat (limited to 'src/userspace/linker.ld')
-rw-r--r--src/userspace/linker.ld19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/userspace/linker.ld b/src/userspace/linker.ld
new file mode 100644
index 0000000..7c2941f
--- /dev/null
+++ b/src/userspace/linker.ld
@@ -0,0 +1,19 @@
+ENTRY(_start)
+
+SECTIONS {
+ .text 0x40000000 : {
+ *(.text)
+ . = ALIGN(4096);
+ }
+
+ .data : {
+ *(.data)
+ *(.rodata)
+ . = ALIGN(4096);
+ }
+
+ .bss : {
+ *(.bss)
+ . = ALIGN(4096);
+ }
+}