Docsity
Docsity

Prepare for your exams
Prepare for your exams

Study with the several resources on Docsity


Earn points to download
Earn points to download

Earn points by helping other students or get them with a premium plan


Guidelines and tips
Guidelines and tips

Exchange without excg, Study Guides, Projects, Research of Advanced Machining Processes

excg prog - excg prog

Typology: Study Guides, Projects, Research

2014/2015

Uploaded on 09/04/2015

Karthik.Krishna
Karthik.Krishna 🇮🇳

1 document

1 / 1

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
.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,block1
lea di,block2
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

Partial preview of the text

Download Exchange without excg and more Study Guides, Projects, Research Advanced Machining Processes in PDF only on Docsity!

.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