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