What will be displayed to console when the following MIPS as…
What will be displayed to console when the following MIPS assembly program executes? If needed, you can reference MIPS Green Sheet.. .dataexam: .asciiz “abcdefghijklmnop.\n” .text .globl mainmain: la $t0,exam li $t1,0 li $t2,5LOOP slt $t3,$t1,$t2 beq $t3,$zero,L1 lb $t4,0($t0) addiu $t0,$t0,1 addiu $t1,$t1,1 j LOOPL1: li $v0,11 move $a0,$t4 syscall jr $ra