14 lines
171 B
Text
14 lines
171 B
Text
section .text
|
|
global _start
|
|
|
|
_start:
|
|
mov edx, len
|
|
mov ecx, msg
|
|
mov ebx, 1
|
|
mov eax, 4
|
|
int 0x80
|
|
jmp _start
|
|
|
|
section .data
|
|
msg db "SPAM",0xa
|
|
len equ $-msg
|