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, 22.06.2019 09:50
What is a rush associated with alcohol?
Answers: 1
question
Computers and Technology, 22.06.2019 15:30
Which of the following examples has four beats in each measure?
Answers: 2
question
Computers and Technology, 22.06.2019 17:00
Match the following. 1. show grouping of word processing tasks that can be performed quick access toolbar 2. shortcut location for commonly used elements scroll bars 3. organized commands used to modify documents ribbon 4. used to align and measure content in a word screen zoom bar 5. vertical and horizontal bars that are used to navigate through a document contextual tabs 6. displays the name of the document in use ruler 7. allows users to enlarge or shrink a visual of a word document title bar
Answers: 2
question
Computers and Technology, 24.06.2019 01:00
Me if you do then you get 10 points and brainliest
Answers: 1
You know the right answer?
The following code reverses myArray. Complete the missing statements. (5 points) .386 .model flat, s...
Questions
question
Computers and Technology, 08.11.2019 18:31
question
Mathematics, 08.11.2019 18:31
Questions on the website: 13722367