summaryrefslogtreecommitdiff
path: root/arch/i386/boot/crti.s
blob: 8386b77f0533efdbd69d606c3df1f0ca5682cd75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.section .init

.global _init
.type _init, @function
_init:
        pushl %ebp
        movl %esp, %ebp

.section .fini

.global _fini
.type _fini, @function
_fini:
        pushl %ebp
        movl %esp, %ebp