Question: Assembly / C Coding Assignment Description: 1. Write a program to solve the following equation for any input of A, B, and C. A -
Assembly / C Coding Assignment

Description: 1. Write a program to solve the following equation for any input of A, B, and C. A - input () Binput () C -input () X = (A + 95) * ((B * 16) / C) -A + 20 output (X) 2. Rewrite the program in C and compile it as a 32-bit executable with the command: gcc -m32 mycode.c Run both your assembly version and C version to make sure the answers agree. 3. Disassemble the compiled C version with the following command: objdump d -Mintel a.out Find the main function, and try to locate the assembly instructions corresponding to the matlh equation. How does your code compare to what the compiler did? Does your code and the compiler generated code differ at all? Describe. Please include screenshots, line numbers, and enough description to show me you've carefully thought it through.:) Please turn in: Your assembly code (text file) Your C code (text file) A document explaining #3 (text, docx, or pdf is fine) . Test numbers: x 997 a-1, b-2,c-3 x-979
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
