I've been meaning to get started with RISC-V for some time now but can't find much on it for total beginners online. Can anyone recommend a starting point for a total noob?
The error is understandable, the main prototype RISC-V core is written in Chisel and the "Rocket Core Generator" is written in Chisel. The RISC-V team at Berkeley has a lot of overlap with the Chisel team. So it is easy to think RISC-V is all Chisel. I believe
Chisel, Chisel, RISC-V, Chisel, if that makes any sense.
TomVDB|7 years ago
“Starting” is a bit ambiguous.
But I suggest that you first simple read the ISA specification. It’s surprisingly readable and if contains justifications for some design decisions.
After that, buy a small FPGA board and run a picorv32 CPU in it. Or one of the many other RISC-V soft cores.
eternal_virgin|7 years ago
eBombzor|7 years ago
For actually learning RISC-V, you can check out these books: https://riscv.org/risc-v-books/
The Patterson and Hennessy book is a great starting point and the RISC-V reader is great reference.
sitkack|7 years ago
https://riscv.org/wp-content/uploads/2015/01/riscv-rocket-ch...
https://github.com/freechipsproject/rocket-chip (parametric SoC generator, Chisel)
https://github.com/ucb-bar/riscv-sodor (Chisel)
https://chisel.eecs.berkeley.edu/
dooglius|7 years ago
What do you mean? The core here is entirely Verilog/SystemVerilog
chrisseaton|7 years ago
How can an ISA ‘use Chisel’? It’s a spec not an implementation.