I am trying to do Addition on two register. It show result Correctly until the result of addition is less than 20. As the result goes above 20. Program is displaying garbage values:
Here is the code
mov ax, 10
mov bx, 9
add ax, bx
aaa
mov bx, ax
add bl, 48
add bh, 48
mov ah, 02
mov dl, bh
int 21h
mov ah, 02
mov dl, bl
int 21h
What I am doing wrong? :' (