Answer from cs61c-bg (Spencer Ahrens 16187781) for Question 4
memory mapped io means that data written to a certain portion of memory is actually not written but instead forwarded to a specific device

  lw $t1 address
loop:
  lb $v0 7($t1)
  j loop

