Skip to content

jesse-r-s-hines/RISC-V-Graphical-Datapath-Simulator

Repository files navigation

RISC-V Graphical Datapath Simulator

This is a web-based graphcial simulator for a simple 32-bit, single-cycle implementation of RISC-V. The simulator lets you step through a RISC-V program and view the current values of wires and components on the datapath and explanations of what each of the datapath components do. This is very useful for teaching or learning about the RISC-V datapth. All the 32-bit integer instructions are supported except the syscall and concurrency related instructions and auipc. The datapath is closely based on the design described in Computer Organization and Design RISC-V Edition.

Online Demo

Screenshot

The simulator is available at https://jesse-r-s-hines.github.io/RISC-V-Graphical-Datapath-Simulator.

Building

The project is written in TypeScript and uses webpack to bundle the project.

If you want to build the project yourself, you'll need Node and npm. Then run

npm install
npm run serve

which will serve the project on localhost.

Testing

The tests use Mocha. Just run

npm test