Hello,
i wrote tiny program to output a single symbol, and it doesn't do the job. The whole code is below:
.MODEL SMALL
.DATA
.CODE
BEGIN:
MOV AH,02h ; function of printing single character
MOV DL,'>' ; symbol of prompt
INT 21h ; DOS call
END BEGIN
After compiling and linking i always get An Illegal Instruction window
Please help me