Scripts posted recently tagged to for in Kelpi

1- 2 of 2.

Mostrar tabla ASCII en ensamblador para Linux/x86

to ASCII for asm assembler ensamblador x86 i386 Linux by txipi

section         .bss
char    resb    1
section         .text
global _start
_start:

Bucle simple en ensamblador para Linux/x86

to for asm assembler ensamblador x86 i386 Linux by txipi

section         .data
i       dd      0Ah                     ;10 veces
msg     db      'Repitiendo...', 0Ah    ;mensaje
len     equ     $ - msg                 ;longitud
section         .text
hits counter