blob: 1b484b0c2fe70f0527feb1712a9301e497a524ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
.text
.globl __pei386_runtime_relocator
__pei386_runtime_relocator:
ret
.globl __init
__init:
jmp .init
.globl __fini
__fini:
jmp .fini
.section .init
xor %eax,%eax
push %eax
push %ecx
push %edx
nop
nop
.section .fini
xor %eax,%eax
push %eax
push %ecx
push %edx
nop
nop
.section .midipix
.ascii "e35ed272"
.ascii "9e55"
.ascii "46c1"
.ascii "8251"
.ascii "022a59e6c480"
.long 0
.long 1
.long 0
.long 0
.long __CTOR_LIST__
.long __DTOR_LIST__
|