blob: 74b909498ab91d6c9ff87e72f793aad79defb469 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
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
|