.data someGrade: .word 76 Grades: .ascii "ABCDF" .text lw $t1, someGrade la $t2, Grades blt $t1,50, RecL blt $t1,60, A_D blt $t1,70, A_C blt $t1,80, A_B lb $t3, Grades #They get an A b endCase A_B: lbu $t3,1($t2) # they get a B b endCase A_C: lb $t3, 2($t2) b endCase A_D: lb $t3, 3($t2) b endCase RecL: lb $t3, 4($t2) #They're Dumb endCase: move $a0, $t3 li $v0, 11 syscall li $v0, 10 syscall