Question: Convert this C++ code below into assembly language: // Global variables short a = 5; short b = 6; short c = 7; short d

Convert this C++ code below into assembly language:

// Global variables short a = 5; short b = 6; short c = 7; short d = 8; short e; short f; short g; short h; // Code int main() { ++d; --c; b = a + 2; a = d + 9; e = a + b - c - d; f = -c; g = f + e; h = -b - c + a; (use these comments below to match it with the assembly language line for the C++ code block above) // 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 DumpRegs function // 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 DumpRegs function --h; g = g + 6; f = 16; e = -g - f; d = 5 - e; c = -c; b = c + e - h; a = -b + c - d;

(use these comments below to match it with the assembly language line for the C++ code block above) // 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 DumpRegs function // 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 DumpRegs function // Call the WaitMsg function }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!