banan-os/kernel/arch/i386/crtn.s

10 lines
227 B
ArmAsm
Raw Normal View History

/* x86 crtn.s */
.section .init
/* gcc will nicely put the contents of crtend.o's .init section here. */
popl %ebp
ret
.section .fini
/* gcc will nicely put the contents of crtend.o's .fini section here. */
popl %ebp
ret