Answer from cs61c-eq (Nicholas Hwang 16732453) for Question 4
Memory-mapped IO means that there are specific locations in memory that are used to hold instructions/data for IO devices. 

loop:
andi $t0, $a0, 0x0001
beq $t0, $0, loop
lb  $v0, 0($a1)
