.data isim db 'Mehmet' .code main proc far mov ax,@data mov ds,ax mov di, offset isim+5 sub dl,dl mov cx, 6 gel: mov ah,09 mov bh,00 mov al, [di] mov bl,01 int 10h dec di dec cx cmp cx, 0 jnz gel main endp end main