%include "io.inc" section .data nr: db 0x88, 0x1 section .text global CMAIN CMAIN: for: inc byte [nr] jnc for inc byte [nr + 1] PRINT_UDEC 2, nr xor eax, eax ret