subject
Computers and Technology, 22.12.2021 08:40 terry94

The following code reverses myArray. Complete the missing statements. (5 points) .386 .model flat, stdcall .stack 4096 ExitProcess proto, dwExitCode:dword .data myArray DWORD 1,2,3,4,5,6,7,8,9 arraySize DWORD ? .code ;reverseArray procedure/function reverseArray proc ;poping the parameters off of the stack pop edx pop arraySize ;moving parameters into registers mov esi, 0 mov ebx, type myArray mov ecx, arraySize ;loop to store values of array in the stack L1: mov eax, myArray[esi] push eax add esi, ; << Complete statement loop L1 ;moving parameters into registers mov esi,0 mov ecx, arraySize ;loop to pop values of array from stack onto array L2: pop eax mov myArray[esi], eax add esi, ebx loop L2 ;return RET ;end of function reverseArray endp main proc ;pushing parameters onto the stack mov edx, OFFSET myArray push edx mov arraySize, lengthof myArray push arraySize ;calling reverseArray call ; << Complete statement invoke ExitProcess,0 main endp end main

ansver
Answers: 1

Another question on Computers and Technology

question
Computers and Technology, 23.06.2019 15:30
Brian wants to conduct an online search with a certain phrase. he intends to use the words books that belong to the 1800s in his search. how should he use the word that in his search?
Answers: 1
question
Computers and Technology, 24.06.2019 18:30
What are the benefits to using presentations to organize and deliver information in the workplace? they add visual appeal. they are easy to update. they ensure accuracy. they can be created quickly. the work can't be lost.
Answers: 1
question
Computers and Technology, 24.06.2019 19:30
Dtp allows you to manipulate text boxes in the following ways. more than 1 answer. a.move them b.rotate them c.resize them d.all of the above e.none of the above
Answers: 1
question
Computers and Technology, 24.06.2019 20:00
Avirus enters a computer or network as code embedded in other software directly from another computer
Answers: 1
You know the right answer?
The following code reverses myArray. Complete the missing statements. (5 points) .386 .model flat, s...
Questions
question
Mathematics, 29.08.2019 21:30
question
History, 29.08.2019 21:30
question
Mathematics, 29.08.2019 21:30