toaruos/toolchain/patches/newlib/toaru/crti.s
2013-01-25 15:59:33 -08:00

20 lines
230 B
ArmAsm

; ToAruOS User CRT0
BITS 32
section .init
global _init
_init:
push ebp
; .init goes here
section .fini
global _fini
_fini:
push ebp
; .fini goes here
; vim:syntax=nasm
; vim:noexpandtab
; vim:tabstop=4
; vim:shiftwidth=4