diff options
Diffstat (limited to 'crt/i386/crt1.s')
-rw-r--r-- | crt/i386/crt1.s | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/crt/i386/crt1.s b/crt/i386/crt1.s index f520745c..f5b4f4fd 100644 --- a/crt/i386/crt1.s +++ b/crt/i386/crt1.s @@ -3,17 +3,17 @@ .text .global _start _start: - xorl %ebp,%ebp - popl %ecx - movl %esp,%eax - andl $-16,%esp - pushl %esp - pushl %esp - pushl %edx - pushl $_fini - pushl $_init - pushl %eax - pushl %ecx - pushl $main + xor %ebp,%ebp + pop %ecx + mov %esp,%eax + and $-16,%esp + push %esp + push %esp + push %edx + push $_fini + push $_init + push %eax + push %ecx + push $main call __libc_start_main 1: jmp 1b |