Dec-12: The end is neigh! Submit your final work for Projects 5 and 6 before midnight, Thursday, Dec-13. Also, I
have updated the readings page to include materials for the topics we have covered in the final few weeks.
Nov-16: There's a bug in vmsim.c for which there is an easy fix that you should apply to your copy of the
code. Specifically, in the functions vmsim_read_real() and vmsim_write_real(), the following assertion
appears:
assert(end < real_limit);
The comparison operator should be changed so that this assertion is:
assert(end <= real_limit);
Without this change, attempts to read and write the entire final page (say, via bs_write() or bs_read())
will unnecessarily fail.