blob: f6d49291a02b23c04a93b3e84a8fb07a0c1d3782 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
.text
.global _start
_start:
xor %ebp,%ebp
pop %edi
mov %esp,%esi
and $-16,%esp
push %ebp
push %ebp
push %esi
push %edi
call __dynlink
mov %esi,%esp
push %edi
xor %edx,%edx
jmp *%eax
|