# Written as a COMP1521 lecture exercise # This will not output anything # You can step through the code on mipsy web or in vscode # with Xavier's extension main: li $t0, 10 li $t1, 7 sub $t2, $t0, $t1 # $t2 = $t0 - $t1 addi $t2, $t2, 5 # $t2 = $t2 + 5 li $v0, 0 #return 0 jr $ra