1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-09-09 06:10:43 +02:00

[mips/*] Fix branching example (#4315)

This commit is contained in:
Brian Holbrook
2022-03-03 01:44:38 -06:00
committed by GitHub
parent 414ac29188
commit d208b72f6a
3 changed files with 3 additions and 3 deletions

View File

@@ -188,7 +188,7 @@ lang: uk-ua
# Нехай $s0 = a, $s1 = b, $s2 = c, $v0 = повернути регістр
ble $s0, $s1, a_LTE_b # якщо (a <= b) розгалуження(a_LTE_b)
ble $s0, $s2, max_C # якщо (a > b && a <=c) розгалуження(max_C)
move $v0, $s1 # інакше [a > b && a > c] max = a
move $v0, $s0 # інакше [a > b && a > c] max = a
j done # Перейти в кінець програми
a_LTE_b: # Мітка розгалуження, коли a <= b