        ;;  Exmaple of a MOV instruction
        
        ORG 100h

        mov cx, 5
        mov ax, 3
        mov bx, ax
        mov si, ax
        
begin:  imul bx
        imul si, bx
        loop begin

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