Add: generate test from comment in assembly file

This commit is contained in:
brice.boisson
2023-11-21 18:36:10 +09:00
parent b95e79edc4
commit 7d60960831
3 changed files with 185 additions and 9 deletions

View File

@@ -1,9 +1,11 @@
# t0 = 0
li t0, 0
li t2, 10
li t2, 10 # R[2]=10, MEM[1]=6
loop_head:
bge t0, t2, loop_end
# Repeated code goes here
addi t0, t0, 1
addi t0, t0, 1 # PC=16
j loop_head
loop_end:
loop_end:
# R[0]=0