RosettaCodeData/Task/Loops-Infinite/X86-Assembly/loops-infinite.x86
2023-07-01 13:44:08 -04:00

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