Question: Assembly Language////Write a program that read in 10 integers from the user. Save the numbers into an array; reverse the array and display the reversed
Assembly Language////Write a program that read in 10 integers from the user. Save the numbers into an array; reverse the array and display the reversed array. .data arrayInt DWORD 10 DUP(?) Your program consists of 4 procedures: 1. main procedure: call procedures getInput, reverseArray, displayArray 2. getInput procedure: prompt user to enter 10 integer numbers, save the numbers into the memory for the arrayInt 3. reverseArray: reverse arrayInt 4. displayArray: display the reversed array
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
