.data matrice: .word 8,1,2,5,6,7,2,3,9,4,8,6,2,1,2 n_righe: .word 3 m_colonne: .word 5 .text .globl main main: li $t0,2 li $t1,3 li $t2,0 lw $t3,m_colonne lw $t4,n_righe mul $t2,$t3,$t0 add $t2,$t2,$t1 mul $t2,$t2,4 lw $a0,matrice($t2) li $v0,1 syscall li $v0,10 syscall