3 Program to print a single character on console in 8086 Microprocessor

.MODEL SMALL
.STACK 100

.CODE

 MOV DL,'A'

 MOV AH,2 ; Service Routine Output/Print a single character
 INT 21H

 MOV AH,4CH
 INT 21H

END

Previous
Next Post »