An Assembly Language program that will input from keyboard (without echo) & print it
An assembly language program that will read a character from keyboard (console input without echo function) and print it on the screen. (USE: character output function)
♣ Try it out ::
.model small .stack 100h .code main proc mov ah, 8 int 21h mov ah, 2 mov dl, al int 21h mov ah, 4ch int 21h main endp end main
♣ Sample Input and Output ::
M