Hey guys, I'm having difficulty with the program. I'm new at assembly language and need some assistance. If anyone could help I would really appreciate it.
Write a program that uses a loop to input five signed 32-bit integers from the user, stores the integers in an array, and redisplays the integers backwards using stack.
1) The program will use several procedures in our textbook author's link library. The program's main procedure will call the following two procedures:
PromptForInput: Prompts the user for an array of integers, and fills the array with the user's input.
DisplayBackwards: Redisplay the integers backwards using stack, i.e., using push and pop operations.
Both procedures will receive ESI pointing to the array and ECX holding the array size.
If you could explain the steps to so I can understand what he is talking about. Thanks a lot.