1 / 3

CS344-321 Assembly Language Programming

CS344-321 Assembly Language Programming. Period 26. String Instructions Repeat Prefixes rep repe/repz repne/repnz Move String movs/movsb/movsw. Example .data str1 db 20 dup(?) str2 db 20 dup(?) .code mov ax,@data mov ds,ax mov es,ax mov si,offset str1 mov di,offset str2

kamala
Download Presentation

CS344-321 Assembly Language Programming

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. CS344-321 Assembly Language Programming Period 26

  2. String Instructions Repeat Prefixes rep repe/repz repne/repnz Move String movs/movsb/movsw

  3. Example .data str1 db 20 dup(?) str2 db 20 dup(?) .code mov ax,@data mov ds,ax mov es,ax mov si,offset str1 mov di,offset str2 mov cx,20 cld rep movsb ; copy from str1 to str2

More Related