I Have a Problem With my Assembly Program and i have a unknown error for myself ! after i wrote this code :
codesg segment para 'code'
assume cs:codesg, ds:codesg, ss:codesg
org 100h
Begin : jmp main
Text1 db ' ali ahmadi ' , '$'
Text2 db 10?
main proc
lea si,text1
lea di,text2
cld
mov cx,11
rep movsb
mov ah,09h
lea dx,text2
int 21h
ret
main endp
codesg ends
end Begin
I Have an error Which tells me that : " cannot evaluate this expression 10? " Where is my problem ?