subject

Use a loop with indirect or indexed addressing to reverse the elements of an integer array in place. donot copy the elements to any other array. use the sizeof, type, and lengthof operators to makethe program as flexible as possible if the array size and type should be changed in the future. optionally, you may display the modified array by calling the dumpmem method from the irvine32 library. my current code: .dataarray byte 10h, 20h, 30h, 40h. codemain proc mov esi, 0 mov edi, 0 mov esi, offset array + sizeof array - 1 mov edi, offset array + sizeof array - 1 mov ecx, sizeof array/2l1: mov al, [esi] mov bl, [edi] mov [edi], al mov [esi], bl inc esi dec edi loop l1 call dumpregs call dumpmem exitmain endpend main

ansver
Answers: 2

Another question on Computers and Technology

question
Computers and Technology, 24.06.2019 11:20
William travels a lot on business purpose. he needs to regularly communicate with his business partner. he also needs to send out weekly reports to his boss while he is traveling. which web-based application best suits william’s needs? (social media, webmail, wiki) is the best web-based application for william. he can access this application via the internet using a (digital cable, fax machine, web browser).
Answers: 1
question
Computers and Technology, 24.06.2019 20:20
Write python code that prompts the user to enter his or her favorite color and assigns the user’s input to a variable named color.
Answers: 1
question
Computers and Technology, 25.06.2019 20:30
Write the definition of a class counter containing: an instance variable named counter of type int. an instance variable named counterid of type int. a static int variable ncounters which is initialized to zero. a constructor that takes an int argument and assigns its value to counter. it also adds one to the static variable ncounters and assigns the result to the instance variable counterid. a method named increment. it does not take parameters or return a value; it just adds one to the instance variable counter. a method named decrement that also doesn't take parameters or return a value; it just subtracts one from the counter. a method named getvalue. it returns the value of the instance variable counter. a method named getcounterid: it returns the value of the instance variable counterid.
Answers: 1
question
Computers and Technology, 25.06.2019 22:00
Drag the tiles to the correct boxes to complete the pairs. match the items with their respective descriptions.
Answers: 2
You know the right answer?
Use a loop with indirect or indexed addressing to reverse the elements of an integer array in place....
Questions
question
English, 05.10.2020 16:01
question
Mathematics, 05.10.2020 16:01
question
Mathematics, 05.10.2020 16:01
question
Mathematics, 05.10.2020 16:01
question
Mathematics, 05.10.2020 16:01
Questions on the website: 13722363