2011-03-11 18:52:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
.global __start
|
|
|
|
.global ___main
|
2011-08-07 13:02:30 +00:00
|
|
|
.global _DllMainCRTStartup
|
|
|
|
|
|
|
|
|
|
|
|
.section .init
|
|
|
|
|
|
|
|
.def __start; .scl 2; .type 32; .endef
|
|
|
|
.def _DllMainCRTStartup; .scl 2; .type 32; .endef
|
2011-03-11 18:52:24 +00:00
|
|
|
|
|
|
|
.align 4
|
|
|
|
__start:
|
2011-08-07 13:02:30 +00:00
|
|
|
_DllMainCRTStartup:
|
|
|
|
|
2011-03-14 20:15:36 +00:00
|
|
|
call __pei386_runtime_relocator
|
2011-03-11 18:52:24 +00:00
|
|
|
jmp _main
|
|
|
|
|
|
|
|
.align 4
|
|
|
|
___main:
|
|
|
|
ret
|
|
|
|
|
|
|
|
|