Hi. I am trying to print a single digit decimal number on to the screen. So far I've come out with this code.
mov ax, 3
var db '$'
mov bx, offset var
add ax, 30h
mov [bx], ax
add bx, 1
mov byte ptr [bx], '$'
mov ah, 9
mov dx, offset var
int 21h
mov ah, 4ch
int 21h
I do not see the result. It is printing blank for me.