        ;;  Exmaple of a MOV instruction
        
        ORG 100h

        cld
        mov al, 0AAh
        mov di, str
        mov cx, strend - str

        rep stosb

        ;;  exit:
        mov ax, 4c00h
        int 21h

str:     DB 'A very long srting'
strend:  DB 0
