# 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, 2 li $t1, 3 mul $t2, $t0, $t1 # $t2 = $t0 * $t1 li $v0, 0 #return 0 jr $ra