        ;;  Exmaple of a MOV instruction
        
        ORG 100h

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

subr:   mov ax, 01234h
        ret
