CSC 174 - Computer Organization and Assembly Language

Dr. R. M. Siegfried

Assignment #5 - p. 109/Programming Project #7

Due Monday, February 29, 2016

Write a program that implements the following arithmetic expression:

EAX = -val2 + 7 - val3 + val1
Use the following data definitions:
val1	SDWORD		8
val2	SDWORD		-15
val3	SDWORD		20
In comments, next to each instruction, write the hexadecimal value of EAX. Insert a
call DumpRegs
statement at the end of the program.

[Back to the Assignments Index]