summaryrefslogtreecommitdiff
path: root/linkscript.ld
diff options
context:
space:
mode:
Diffstat (limited to 'linkscript.ld')
-rw-r--r--linkscript.ld8
1 files changed, 8 insertions, 0 deletions
diff --git a/linkscript.ld b/linkscript.ld
new file mode 100644
index 0000000..897ef57
--- /dev/null
+++ b/linkscript.ld
@@ -0,0 +1,8 @@
+SECTIONS {
+ .init 0x8000 : { *(.init) }
+ . = ALIGN(0x1000);
+ . = . + 0x800;
+ stack_svc = .;
+ . = . + 0x800;
+ stack_usr = .;
+}