i am using ubuntu 20.04 and i am new at asmebly languge. plz guide me regarding this error. i want read a char from keyboard and print it on console.
- here is code
.MODEl SMALL .STACK 100h .CODE
MAIN PROC mov ah,01 int 21h mov bl,al mov ah,02 mov dl,bl int 21h
END MAIN