03/10/2017
Tutorial 2 highlights :
# MIPS register convention - $v0~$v1 ; $a0~$a3 ; $t0~$t7 ; $s0~$s7 ; $t8~$t9 ; $sp ; $ra
# Memory - Data, Instruction, Stack
# Memory type - Big-endian (e.g. MIPS) or Little-endian
# Register is different from Memory/Cache. (Although all of them can be used for storage)
# MIPS program example - Looping by using counter, stop condition, base address ...