Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #MAtrix Addition
- .data
- mat1: .word 3,3,3,3,3,3,3,3,3
- mat2: .word 3,3,3,3,3,3,3,3,3
- .equ size,3*3
- res: .zero 36
- .text
- li x4,size
- la x1, mat1
- la x2,mat2
- la x3, res
- addition:
- lw x8, 0(x1)
- lw x9, 0(x2)
- add x10, x8, x9
- sw x10, 0(x3)
- addi x1, x1, 4
- addi x2, x2, 4
- addi x3, x3, 4
- addi x4,x4,-1
- bne x4, x0, addition
- j exit
- exit: nop
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement