forked from Bananymous/banan-os
19 lines
359 B
ArmAsm
19 lines
359 B
ArmAsm
/* i686 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
|
|
|
|
.section .init_array
|
|
.global __init_array_end
|
|
__init_array_end:
|
|
|
|
.section .fini_array
|
|
.global __fini_array_end
|
|
__fini_array_end:
|