Нужна помощь в поиске максимального минимума в массиве с помощью MIPS Assembly - PullRequest
0 голосов
/ 09 октября 2019

Я новичок в MIPS, и я действительно запутался, как найти макс и мин. Это дает мне цифры, но неправильно.

        loop:
            ble $t1, $s1, yeah
            j Exit
        yeah:
            sll $t1, $t1, 2  #t1 = j, s1 = i
            add $t0, $t1, $s5
            lw  $t0, 0($t0)
            blt $t0, $s6, targetmin #could be the problem
            bgt $t0, $s7, targetmax #could be the problem
            addi $t1, $t1, 1
            j loop
        targetmin:
            move $s6, $t0 #could be the problem

            j loop
        targetmax:
            move $s7, $t0 #could be the problem

            j loop

    ```
...