freebsd-dev/lib/csu/arm/crti.S

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
374 B
ArmAsm
Raw Normal View History

2004-05-14 12:19:04 +00:00
#include <machine/asm.h>
__FBSDID("$FreeBSD$");
2004-09-23 23:00:51 +00:00
.section .init,"ax",%progbits
.align 4
.globl _init
.type _init,%function
_init:
mov ip, sp
stmdb sp!, {fp, ip, lr, pc}
sub fp, ip, #4
.section .fini,"ax",%progbits
.align 4
.globl _fini
.type _fini,%function
_fini:
mov ip, sp
stmdb sp!, {fp, ip, lr, pc}
sub fp, ip, #4
.section .note.GNU-stack,"",%progbits