I am trying to input a three (say) digit number from the user through INT 21H
(DOS) and save it in a resister. Normally what we do is to input a single character from the user. The corresponding code is:
MOV AH,1
INT 21H
The above code takes a single digit input from the user (from 0 to 9).the input is saved in the register AL
But what can I do if I want to input a multiple digit number from the user? (say 456)
Can anyone provide a sample code for that?