Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ESEO-Tech/emulsiV
A visual simulator for teaching computer architecture using the RISC-V instruction set
https://github.com/ESEO-Tech/emulsiV
risc-v simulator
Last synced: 4 days ago
JSON representation
A visual simulator for teaching computer architecture using the RISC-V instruction set
- Host: GitHub
- URL: https://github.com/ESEO-Tech/emulsiV
- Owner: ESEO-Tech
- License: mpl-2.0
- Created: 2020-06-18T07:23:02.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-02-02T11:17:36.000Z (9 months ago)
- Last Synced: 2024-08-02T19:37:11.876Z (3 months ago)
- Topics: risc-v, simulator
- Language: JavaScript
- Homepage: https://eseo-tech.github.io/emulsiV/
- Size: 510 KB
- Stars: 170
- Watchers: 4
- Forks: 40
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
emulsiV
==========[emulsiV](https://eseo-tech.github.io/emulsiV/) is a visual simulator for Virgule,
a minimal CPU core implementation based on the RISC-V architecture.
This simulator is intended to be used as a tool for teaching the basics of
computer architecture.The user interface shows the structure of the datapath and animates the data
transfers between functional units.
The execution of a single instruction is decomposed into several steps (fetch,
decode, ALU, mem/reg, PC) for educational reasons, but the intent is not to
reflect a specific sequencer or pipeline implementation.
In fact, we don't plan to simulate a pipeline in more detail.emulsiV is free software and is distributed under the terms of the
[Mozilla Public License 2.0](https://github.com/ESEO-Tech/emulsiV/blob/master/LICENSE).
It is developed by Guillaume Savaton, teacher, researcher and engineer at [ESEO](https://eseo.fr).Running the simulator locally
-----------------------------Due to the security policies in recent web browsers, some features will only work
if the simulator is served by a web server.
We provide facilities to automate the process.Install `npm` and run the following command from the root of the source tree:
```
npm install
```This command starts a local web server and opens the simulator in a web browser:
```
npm start
```Development
-----------Check the JavaScript source code:
```
npm run lint
```This command starts a local web server and runs the unit tests from the `test` folder:
```
npm test
```