Computers and Technology

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

answer
Answers: 2

Other questions on the subject: Computers and Technology

image
Computers and Technology, 23.06.2019 02:30, woodpeckerdeejpe8wvh
How to launch an app: steps to be successful? launching an app is a great idea, but it’s not that easy as we supposed to think. the majority of mobile applications don’t generate revenue because companies aren’t ready to be competitive. referring to our experience in successfully building and launching apps we hope to you omit these difficulties. we are going to talk about ideas, marketing, testing your product, its development, distribution and support. you will learn 8 product launch stages to succeed.
Answers: 1
image
Computers and Technology, 23.06.2019 03:00, jarteria0
State 7 common key's for every keyboard
Answers: 1
image
Computers and Technology, 23.06.2019 23:00, minosmora01
How do you know if the website is secure if you make a purchase
Answers: 2
image
Computers and Technology, 24.06.2019 14:00, Abrahamolve
When creating a field in a table, you must set the to determine what type of data the field can store. field property data type field type data property
Answers: 1
Do you know the correct answer?
Use a loop with indirect or indexed addressing to reverse the elements of an integer array in place....

Questions in other subjects: