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