I'm trying to check the length of a string, its the most simple way there is but for some reason it says the the length of the string is 14h
org 100h
mov cl,len
mov si,offset src
mov di,offset dst
rep movsb
mov ah,0
int 16h
ret
src DB 'abcdefghi$'
dst DB 10 dup(0)
len DB EQU $-src