.model small .stack 10 .data x dw 5h y dw 10h .code main: mov ax, @data mov ds, ax mov ax, x mov bx, y **incompleto** mov ax, 4c00h int 21h end main