# --- Preparação dos valores iniciais --- addi $a0, $zero, 100 # $a0 = 100 addi $a1, $zero, 200 # $a1 = 200 addi $a2, $zero, -1 # $a2 = -1 (ou 0xffffffff) # --- Execução dos testes --- # Teste 1: 100 < 200 (Verdadeiro). Resultado em $t0 sltiu $t0, $a0, 200 # Teste 2: 200 < 100 (Falso). Resultado em $t1 sltiu $t1, $a1, 100 # Teste 3: 100 < 100 (Falso). Resultado em $t2 sltiu $t2, $a0, 100 # Teste 4: (unsigned)-1 < 1 (Falso). Resultado em $t3 sltiu $t3, $a2, 1 # Teste 5: 100 < (unsigned)-1 (Verdadeiro). Resultado em $t4 sltiu $t4, $a0, -1