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 19:40
Solve the following javafx application: write a javafx application that analyzes a word. the user would type the word in a text field, and the application provides three buttons for the following: - one button, when clicked, displays the length of the word.- another button, when clicked, displays the number of vowels in the word.- another button, when clicked, displays the number of uppercase letters in the word(use the gridpane or hbox and vbox to organize the gui controls).
Answers: 1
question
Computers and Technology, 23.06.2019 09:50
Allison and her group have completed the data entry for their spreadsheet project. they are in the process of formatting the data to make it easier to read and understand. the title is located in cell a5. the group has decided to merge cells a3: a7 to attempt to center the title over the data. after the merge, allison points out that it is not centered and looks bad. where would the title appear if allison unmerged the cells in an attempt to fix the title problem?
Answers: 2
question
Computers and Technology, 23.06.2019 12:20
When guido van rossum created python, he wanted to make a language that was more than other programming languages. a. code-based b. human-readable c. complex d. functional
Answers: 1
question
Computers and Technology, 24.06.2019 02:10
Aspeed limit sign that says "night" indicates the legal speed between sunset and sunrise.
Answers: 2
You know the right answer?
The following code reverses myArray. Complete the missing statements. (5 points) .386 .model flat, s...
Questions
question
Physics, 26.11.2019 22:31
Questions on the website: 13722363