blob: 78a1862efc5ecded645d0c9a91e7886c26c8637d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#NO_APP
.file "initfini.c"
#APP
.section .init
#NO_APP
.align 1
.global _init
.type _init, @function
_init:
Push $srp
subq 4,$sp
movem $r0,[$sp]
move.d $pc,$r0
sub.d .:GOTOFF,$r0
#APP
.align 1
.section .fini
#NO_APP
.align 1
.global _fini
.type _fini, @function
_fini:
Push $srp
subq 4,$sp
movem $r0,[$sp]
move.d $pc,$r0
sub.d .:GOTOFF,$r0
#APP
.align 1
/*@TRAILER_BEGINS*/
|