toaruos/toolchain/patches/newlib/toaru/crti.s

20 lines
230 B
ArmAsm
Raw Normal View History

2012-05-17 06:21:37 +04:00
; ToAruOS User CRT0
BITS 32
2013-01-26 03:59:33 +04:00
section .init
global _init
_init:
push ebp
; .init goes here
section .fini
global _fini
_fini:
push ebp
; .fini goes here
2012-05-17 06:21:37 +04:00
; vim:syntax=nasm
; vim:noexpandtab
; vim:tabstop=4
; vim:shiftwidth=4