How to print an integer stored in a variable
问题 So I have a program in 8086 assembly that allows the user to enter 2 digits, store them in a variable and then print out the number: data segment broj db ? ends stack segment dw 128 dup(0) ends code segment mov ax, data mov ds, ax mov es, ax mov ah, 1h int 21h sub al, 48d mov bl, 10d mul bl mov broj, al mov ah, 1h int 21h sub al, 48d add broj, al mov dl, broj sub dl, 48d mov ah, 2h int 21h mov ax, 4c00h int 21h ends However whenever I enter a number for example 21 it doesn't give me the