W15 Examples

You might also like

Download as pptx, pdf, or txt
Download as pptx, pdf, or txt
You are on page 1of 8

Examples

Copy string from source to destination


.data
source DWORD 20 DUP(?)
target DWORD 20 DUP(?)

.code
cld ; direction = forward
mov ecx, LENGTHOF source ; set REP counter
mov esi,OFFSET source
mov edi,OFFSET target
rep movsd
Fill array with 0FFh
.data
Count = 100
string1 BYTE Count DUP(?)
.code

mov al,0FFh ; value to be stored


mov edi,OFFSET string1 ; ES:DI points to target
mov ecx,Count ; character count
cld ; direction = forward
rep stosb ; fill with contents of AL
LODS SOTS example.
What does this code do?
.data
array 1,2,3,4,5,6,7,8,9
dest 9 DUP(?)

.code
mov esi,OFFSET array
mov edi,OFFSET dest
mov ecx,LENGTHOF array
cld
L1: lodsb
or al,30h
stosb
loop L1
Multiply array values by constant
.data
array DWORD 1,2,3,4,5,6,7,8,9,10
multiplier DWORD 10 ; constant

.code
cld ; direction = up
mov esi,OFFSET array ; source index
mov edi,esi ; destination index
mov ecx,LENGTHOF array ; loop counter
L1: lodsd ; copy [ESI] into EAX
mul multiplier ; multiply by a value
Stosd ; store EAX at [EDI]
loop L1
PUSH/POP to reverse a string
• Use a loop with indexed addressing
• Push each character on the stack
• Start at the beginning of the string, pop the stack in reverse
order, insert each character into the string
• Source code
Example
Write a program so the user can input a string of
up to 50 characters, and then displays the characters
in reverse order. Use push/pop commands
example
• Write a program that contains procedures:
• First procedure allows the user to input integers and store them in
array
• Second procedure calculates the sum of the array
• Third procedure displays the sum on the screen

You might also like