Home / Expert Answers / Computer Science / language-required-windows-x64-assembly-language-can-you-write-a-code-that-sums-up-20-numbers-that-pa552

(Solved): LANGUAGE REQUIRED: Windows x64 Assembly Language Can you write a code that sums up 20 numbers that ...



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:

Write an x64 Yasm / Nasm Assembly Language program to implement the following program specifications:
1. Declare appropriate

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 ' ' 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 ' ' 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 ' ' library function printf( () .


We have an Answer from Expert

View Expert Answer

Expert Answer


Here's an x64 Yasm / Nasm Assembly Language program that implements the given program specifications:section .data array: times 20 dq 0 ; array to
We have an Answer from Expert

Buy This Answer $5

Place Order

We Provide Services Across The Globe