Name: Anonymous 2008-09-29 13:09
print "dongs" five times in your favorite language
with extreme conciseness/verbosity
with extreme conciseness/verbosity
section .data
dong: db "dong", 10
donglen equ $-dong
section .text
global _start
_start:
mov ecx, 5
.dong
push ecx
mov eax, 4
mov ebx, 1
mov ecx, dong
mov edx, donglen
int 80h
pop ecx
loop .dong
mov eax, 1
xor eax, eax
int 80h