summaryrefslogtreecommitdiff
path: root/crt
diff options
context:
space:
mode:
Diffstat (limited to 'crt')
-rw-r--r--crt/arm/crt1.s13
1 files changed, 13 insertions, 0 deletions
diff --git a/crt/arm/crt1.s b/crt/arm/crt1.s
new file mode 100644
index 00000000..74b90949
--- /dev/null
+++ b/crt/arm/crt1.s
@@ -0,0 +1,13 @@
+.global _start
+_start:
+ mov fp,#0
+ mov lr,#0
+ ldr a2,[sp],#4
+ mov a3,sp
+ mov a4,#0
+ str fp,[sp,#-4]!
+ str a1,[sp,#-4]!
+ str fp,[sp,#-4]!
+ ldr a1,=main
+ bl __libc_start_main
+1: b 1b