summaryrefslogtreecommitdiff
path: root/arch/i386/boot/crti.s
blob: 4e1e4cb810e6228168ca13a16e3feca04141d84e (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