I have a task to take an existing assembly program that prints signed number (word sized), and I need to change it so it will print unsigned numbers (word sized)... Please help me understand the difference and how should I accomplish this.
That is the program that prints signed number:
.model  small
.stack   100h
.data
num  dw  -32768
numS db  6 dup(' '),'$'
.code
    mov ax, @data
    mov ds, ax
    mov ax, num
    mov bx, 10
    mov si, offset numS+5
next:   
        cwd
    idiv bx
    cmp dx, 0
    jge cont
    neg dx
cont:
    add dl, 48
    mov [si], dl
    dec si
        cmp ax, 0
    jz sof
    jmp next
sof:    
    cmp num, 0
    jge soff
    mov byte ptr[si],   '-'
soff:
    mov ah, 9
    mov dx, si
    int 21h
    .exit
end
Thanks!
 
    