        ;;  Exmaple of a MOV instruction
        
        ORG 100h

        in  al, 010h

        cmp al, 0

        jpe even
        mov ah, 1
        jmp finish
even:   mov ah, 2
finish:
        
        ;;  exit:
        mov ax, 4c00h
        int 21h
        
