        ;;  Exmaple of a MOV instruction
        
        ORG 100h

        push ax
        push si
        push ds
        push 10

        pop ax
        pop bx
        pop cx
        pop dx
        
        ;;  exit:
        mov ax, 4c00h
        int 21h
