mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
159 B
14 lines
159 B
|
14 years ago
|
.section .init
|
||
|
|
.global _init
|
||
|
|
.align 2
|
||
|
|
_init:
|
||
|
|
addi r1, r1, -32
|
||
|
|
swi r15, r1, 0
|
||
|
|
|
||
|
|
.section .fini
|
||
|
|
.global _fini
|
||
|
|
.align 2
|
||
|
|
_fini:
|
||
|
|
addi r1, r1, -32
|
||
|
|
swi r15, r1, 0
|