Курсовая работа: Програми – аналоги DOS-програм ren, xcopy
stop_copy:
pop ds
;set date
mov ax,5701h
mov bx,word ptr handle_2
mov cx,word ptr orig_time
mov dx,word ptr orig_date
int 21h
;close files
mov ah,3eh
mov bx,word ptr handle_1
int 21h
mov ah,3eh
mov bx,word ptr handle_2
int 21h
;attrib
mov ah,43h
xor al,al
mov dx,offset filename_1
int 21h
mov ah,43h
mov al,1
mov dx,offset filename_2
int 21h
;звiльнити
mov ah,49h
int 21h
jc mem_err
ret