home
to by txipi
section .bss
char resb 1
section .text
global _start
_start:to by txipi
section .data
msg db 'Hello, world!', 0Ah ;message
len equ $ - msg ;length
section .text
global _startto by txipi
section .data
i dd 0Ah ;10 veces
msg db 'Repitiendo...', 0Ah ;mensaje
len equ $ - msg ;longitud
section .text