%cpx 100h       ;256
        push ax
        push bx
        push cx
        push dx         ;save registers
        jmp jp1         ;skip to program (:) )
txt:    db "How the wind blows, in the chasm far below the earth",13,10
        db "can anyone tell, how this will turn out? Will they fall in love?",13,10
        db "THAT is anyone's guess..."
$lxt
jp1:    mov bx,1        ;video
        mov dx,txt      ;text
        mov cx,lxt      ;for text's length
        mov ah,40h
        int 21h
        pop dx          ;return registers
        pop cx
        pop bx
        pop ax
        ret

