Answers for "how to add in mips"

0

how to add in mips

.data
num1: .word 73159
num2: .word 0xF19
.text
.globl	main
main:
	lw 	$t1, num1
    lw	$t2, num2
    
    add $s1, $t1, $t2
Posted by: Guest on January-26-2022

Code answers related to "how to add in mips"

Browse Popular Code Answers by Language