forked from KolibriOS/kolibrios
3b27f053ae
git-svn-id: svn://kolibrios.org@2040 a494cfbc-eb01-0410-851d-a64ba20cac60
25 lines
329 B
ArmAsm
25 lines
329 B
ArmAsm
|
|
|
|
.global __start
|
|
.global ___main
|
|
.global _DllMainCRTStartup
|
|
|
|
|
|
.section .init
|
|
|
|
.def __start; .scl 2; .type 32; .endef
|
|
.def _DllMainCRTStartup; .scl 2; .type 32; .endef
|
|
|
|
.align 4
|
|
__start:
|
|
_DllMainCRTStartup:
|
|
|
|
call __pei386_runtime_relocator
|
|
jmp _main
|
|
|
|
.align 4
|
|
___main:
|
|
ret
|
|
|
|
|