%include "io.inc" section .data nr1: dd 4444123 nr2: dw 10 result: dd 0 section .text global CMAIN CMAIN: ; TODO divide nr1 by nr2 ; by using registers of size up to 16 bits and ; store the result in the "result" variable PRINT_UDEC 4, result ; should be 444412 xor eax, eax ret