ok here is what i have now. at the moment i have the decimal value i want in the variable but when i try and display it again it changes back to ascii..
mov ah,1
int 21h
sub ax,48
mov firstd,al
mov al,10
mul firstd
mov firstd,al
mov ah,1
int 21h
sub ax,48
add firstd,al
mov...