Add: first test

This commit is contained in:
brice.boisson
2023-11-20 22:30:19 +09:00
parent 99399cd9b3
commit 1f9a8ceebf
2 changed files with 11 additions and 6 deletions

View File

@@ -0,0 +1,9 @@
# t0 = 0
li t0, 0
li t2, 10
loop_head:
bge t0, t2, loop_end
# Repeated code goes here
addi t0, t0, 1
j loop_head
loop_end: