Using Visual Studio 2010 C++
1) Using Windows Explorer, make a copy of
Irvine\examples\Project_sample
folder in the folder where you keep your materials for this course.
Rename the folder to Week3A.
2) Copy template.asm (created above) into the Week3A folder and rename it
Add1000.asm
3) Open the project from VC++, remove main.asm from the project, and add Add1000.asm to the project.
4) Write an assembly language program that will add all of the integers from 1 through 1000 and place the sum in register eax.
a) Add a DumpRegs command before the end of the program.
b) Your program must use a loop which repeatedly adds the next integer to a running sum. (Do not use a mathematical shortcut.)
c) When your facilitator replaces the number 1000 by some other positive integer in your code, your program must still execute correctly.