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, 21.06.2019 15:00
Look at the circuit illustrated in the figure above. assume that the values of r1 and r2 are equal. if you connect your meter’s test probes to points a and b in the circuit, which of the following voltages would you measure
Answers: 1
question
Computers and Technology, 22.06.2019 00:00
Sam is a data analyst at an advertising firm. he often uses a spreadsheet that contains media ratings details. he would like to filter the spreadsheet data based on different filter criteria. which operators can he use to specify the combination of filter criteria? sam can use the ( blank ) operators to specify a combination of filter criteria.
Answers: 3
question
Computers and Technology, 22.06.2019 06:30
Exchanging which type of data uses the least bandwidth? music photographs video voice bandwidth- the amount of data that can be moved between two points in a set time period
Answers: 1
question
Computers and Technology, 22.06.2019 16:20
It policy compliance and emerging technologies respond to the following: propose at least three control measures that organizations need to put in place to ensure that they remain complaint with emerging technologies and in a continually changing it environment. examine the correlation of effective configuration management and change control procedures to remain compliant with emerging technologies and it security changes.
Answers: 2
You know the right answer?
Assembly language for x86 processors assignment.

use a loop and indexed addressing, to r...
Questions
question
Mathematics, 05.05.2021 22:40
question
Social Studies, 05.05.2021 22:40
question
English, 05.05.2021 22:40
question
English, 05.05.2021 22:40
Questions on the website: 13722360