%include "io.inc" section .data v: dB 12, -56, 93, 44, 55, -23, 44, 71, 43 len: dd $-v sum: dW 0 section .text global CMAIN CMAIN: ; TODO sum vector of BYTE elements into "sum" WORD variable PRINT_UDEC 2, sum ; should be 283 if result is correct xor eax, eax ret