maestro/fibonacci.txt
João Vitor Rafael Chrisóstomo d9ee52826d Adding all the files
2019-09-11 21:17:07 -03:00

20 lines
No EOL
497 B
Text

Fibonacci RISC-V RV32I ASM
=============================
ADDI x2, x0, 1;
ADD x31, x0, x2; --debug the result
ADD x1, x1, x2;
ADD x31, x0, x1; --debug the result
ADD x2, x2, x1;
ADD x31, x0, x2; --debug the result
JALR x0, x0, 8;
=============================
00000000000100000000000100010011
00000000001000000000111110110011
00000000001000001000000010110011
00000000000100000000111110110011
00000000000100010000000100110011
00000000001000000000111110110011
00000000100000000000000001100111