blob: f1c476ca298982d8fa83fc38ad18a23f5b1b1192 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
.section ".text","ax"
.globl _start
_start:
movl $0x21cd4cff,%eax
leal 4(%esp),%esi
movl $__com32,%edi
mov $5,%ecx
cld
rep ; movsl
jmp __start
.section ".bss","a"
.globl __com32
__com32: .space 20
|