I have to print number greater than 9 in Assembly and I've managed to write this code, but for me it prints "_ _" as an answer. What is wrong?
xor ax,ax
mov al,bl
mov bl,0Ah
div bl
mov bl,ah
add bl,48
mov ah,2h
mov dh,offset bl
int 21h
mov bl,al
add bl,48
mov ah,2h
mov dh,offset bl
int 21h