سورس کد اسمبلی(clear desktop)
stksg segment stack db 32 dup("stack") stksg ends datasg segmant para 'para' main proc farret assume cs:codesg mov ah,6h ;clear screen mov al,25 ;number of rows mov ch,0 mov cl,0 mov dh,24 ;row mov dl,79 ;column mov bh,7 ;attribute int 10h mov ah,09h;r...