Merge branch 'master' of git://git.ucc.asn.au/tpg/acess2
[tpg/acess2.git] / Usermode / Libraries / crt0.o_src / x86_64-crti.S
1 .section .init
2 .global _init
3 .type _init, @function
4 _init:
5         push %rbp
6         mov %rsp, %rbp
7         /* gcc will nicely put the contents of crtbegin.o's .init section here. */
8
9 .section .fini
10 .global _fini
11 .type _fini, @function
12 _fini:
13         push %rbp
14         mov %rsp, %rbp
15         /* gcc will nicely put the contents of crtbegin.o's .fini section here. */

UCC git Repository :: git.ucc.asn.au