section .data string db 'a', 10 section .text global _start _start: mov ecx, 10 petla: inc byte [string] loop petla mov eax, 4 mov ebx, 1 mov ecx, string mov edx, 2 int 0x80 mov eax, 1 mov ebx, 0 int 0x80