mirror of
https://github.com/Asraelite/littlebigcomputer.git
synced 2025-07-17 08:16:50 +00:00
12 lines
100 B
Text
12 lines
100 B
Text
li x0, 0
|
|
li x1, 1
|
|
li x2, 20
|
|
|
|
loop:
|
|
|
|
add x0, x0, x1
|
|
add x1, x0, x1
|
|
subi x2, x2, 1
|
|
bnez x2, loop
|
|
|
|
wfi
|