#This program demonstrates a simple Add operation .code # A label for main, where the program starts. main: li $t0 0x5A # Load the value ox5A into $t0 li $t1, 0xA5 # Load the value 0xA5 into $t1 add $t2, $t0, $t1 # Add the 2 values together. not $t1, $t1 j main li $v0, 10 # Exit the system. syscall