
Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
excg prog - excg prog
Typology: Study Guides, Projects, Research
1 / 1
This page cannot be seen from the preview
Don't miss anything!

.model small .data block1 db 11h,22h,33h,44h,55h block2 db 66h,77h,88h,99h,10h .code mov ax,@data mov ds,ax lea si,block lea di,block mov cx,05h back: mov al,[si] mov dl,[bi] mov [si],bl mov [di],al inc si inc di loop back mov ah,4ch int 21h end