Question: Instructions 1) Using the the excerpt of an asm program, modify the code to implement the mathematical expression specified. 2) Dump the registers to the
Instructions
1) Using the the excerpt of an asm program, modify the code to implement the mathematical expression specified.
2) Dump the registers to the screen.
3) Write your First and last name to the screen to a new line.
4) Document your program with comments where indicated.
5) Upload a file with your program ( containing the .asm + the .exe) to be graded
below is referring to number 1

AddTwo.asm adds two 32-bit integers. 2 Chapter 3 example 1 4 .386 5 .model flat,stdcal.1 6 .stack 4096 7 ExitProcess proto, dwExitCode:dword 9 .code 10 main proc mov eax, 5 add eax, 6 12 13 14 15 main endp 16 end main invoke ExitProcess,e AddTwo.asm adds two 32-bit integers. 2 Chapter 3 example 1 4 .386 5 .model flat,stdcal.1 6 .stack 4096 7 ExitProcess proto, dwExitCode:dword 9 .code 10 main proc mov eax, 5 add eax, 6 12 13 14 15 main endp 16 end main invoke ExitProcess,e
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
