Monday, May 4: You may assume for project 4 that the address accessed by lw or sw is legal.

Tuesday, May 5: The directions on generating test programs that use lw and sw are inconsistent. The program segment labeled __start is incorrect. The right way to use lw or sw so that your test program will run both in your interpreter is as follows:

	__start:
	     lui     $t0, 0x0040
	     ori     $t0, 0x1000

This has been corrected in the project specification.