subject

Assembly language for x86 processors assignment.

use a loop and indexed addressing, to rotate the target string forward by 4 positions. the value of the end of the array should wrap around to the first position. for example the "t" at the end should come around to the front and then the "h" that was next should wrap to the front, etc.

this is a program with a loop and indirect addressing that copies a string from source to target reversing the character in the process. use the following variables: add more to complete

include irvine32.inc

exitprocess proto, dwexitcode: dword

.data
source byte "this is the source string",0
target byte sizeof source dup('#')

.code
main proc
mov esi,0
mov edi, lengthof source - 1
mov ecx, sizeof source

l1:
mov eax, 0
mov al, source[esi]
mov target[edi],al
inc esi
dec edi
loop l1
call dumpregs

invoke exitprocess,0
main endp
end main

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 23.06.2019 15:00
Barbara is interested in pursuing a career in the science and math pathway. which qualifications will her reach that goal? a.an advanced knowledge of physics and math b.an advanced knowledge of engineering and math c. an advanced knowledge of physics and robotics an d. advanced knowledge of machinery and math
Answers: 2
question
Computers and Technology, 23.06.2019 18:20
What is wi-fi infrastructure? a metropolitan area network that uses radio signals to transmit and receive data a communications technology aimed at providing high-speed wireless data over metropolitan area networks a means by which portable devices can connect wirelessly to a local area network, using access points that send and receive data via radio waves includes the inner workings of a wi-fi service or utility, including the signal transmitters, towers, or poles and additional equipment required to send out a wi-fi signal
Answers: 2
question
Computers and Technology, 24.06.2019 02:30
How to apply the fly in effect to objects on a slide
Answers: 1
question
Computers and Technology, 24.06.2019 07:40
What type of multimedia are live news feeds? live news feeds are examples of multimedia.
Answers: 2
You know the right answer?
Assembly language for x86 processors assignment.

use a loop and indexed addressing, to r...
Questions
question
Mathematics, 30.08.2019 05:10
question
History, 30.08.2019 05:10
Questions on the website: 13722361