I have been having trouble with assembling a program, and I would really appreciate any help.
The program is as follows:
.model small
.stack
.code
start
mov ah,2h
mov dl,2ah
int 21h mov ah,4ch
int 21h
end
When I build it I get a "error a2008: Syntax error: start" error. What does this mean, and how to I fix it?
Thanks to any suggestions.