summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--mips.html.markdown3
1 files changed, 2 insertions, 1 deletions
diff --git a/mips.html.markdown b/mips.html.markdown
index 6f48dc33..3add0c5b 100644
--- a/mips.html.markdown
+++ b/mips.html.markdown
@@ -213,8 +213,9 @@ gateways and routers.
# instruction to continue its execution
li $t0, 0
while:
- bgt $t0, 10, end_while # While $t0 is less than 10,
+ bgt $t0, 9, end_while # While $t0 is less than 10,
# keep iterating
+ #actual loop content would go here
addi $t0, $t0, 1 # Increment the value
j while # Jump back to the beginning of
# the loop