Question 1 Convert the following C++ program into an x86 assembly language program. Comment the start of each "code bloc

Business, Finance, Economics, Accounting, Operations Management, Computer Science, Electrical Engineering, Mechanical Engineering, Civil Engineering, Chemical Engineering, Algebra, Precalculus, Statistics and Probabilty, Advanced Math, Physics, Chemistry, Biology, Nursing, Psychology, Certifications, Tests, Prep, and more.
Post Reply
answerhappygod
Site Admin
Posts: 899603
Joined: Mon Aug 02, 2021 8:13 am

Question 1 Convert the following C++ program into an x86 assembly language program. Comment the start of each "code bloc

Post by answerhappygod »

Question 1
Convert the following C++ program into an x86 assembly languageprogram.Comment the start of each "code block" that performs one of thelisted mathematical calculations.Comments go to the right of the actual code, all starting on thesame column.Post ONLY your ASM file here to Blackboard when complete.
// Global variablesint a = 5;int b = 6;int c = 7;int d = 8;int e = 2;int f = 3;int g = 1;int h = 4;// Codeint main(){ --g; b = f + h; e = d + 22 - c - a; f = -g; ++a; g = f + e - 5; a = d + 19 - b; h = c + a + (-f); // Move a into the eax register // Move b into the ebx register // Move c into the ecx register // Move d into the edx register // Call the DumpRegsfunction // Move e into the eax register // Move f into the ebx register // Move g into the ecx register // Move h into the edx register // Call the DumpRegsfunction g = g + 6; f = 16; --h; d = 5 - e; b = -b; e = -g + 11 - a; f = d + c - a; c = c - 100 + b; // Move a into the eax register // Move b into the ebx register // Move c into the ecx register // Move d into the edx register // Call the DumpRegsfunction // Move e into the eax register // Move f into the ebx register // Move g into the ecx register // Move h into the edx register // Call the DumpRegsfunction // Call the WaitMsg function}
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!
Post Reply