LANGUAGE REQUIRED: Windows x64 Assembly Language
Can you write a code that sums up 20 numbers that the users is going to input.
More details in the following image:
LANGUAGE REQUIRED: Windows x64 Assembly Language
Write an x64 Yasm / Nasm Assembly Language program to implement the following program specifications: 1. Declare appropriate Labels: (i.e. variables) to store any data values, formatstrings, descriptive text messages, etc. in the appropriate segments of your Assembly Language code. 2. With the Console/Terminal using the ' C ' library function scanf(), input 20 64-bit integers. 3. Using a Loop structure, store these 20 Integers into an Array. 4. Produce the required output for any formatted heading/message/other descriptive text at runtime using the ' C ' library function printf( ). 5. Calculate the arithmetic Sum of the 20 Integers. 6. Use basic Integer arithmetic operations: addition, subtraction, multiplication, division, remainder, increment, and decrement, as needed in your solution. 7. Use a Loop structure, to read the 20 Integers from your Array and print them, along with their arithmetic Sum, to the Console/Terminal using the ' C ' library function printf( () .