code segment
assume cs:code
start: mov ax,2ab0h
mov ds,ax
mov ax,03abh
mov es,ax
mov si,1000h
mov di,1008h
mov cx,8192
cld
rep movs
mov ax,4c00h
int 21h
code ends
end start