now with info on how to simulate experimental BRAM
This commit is contained in:
parent
e44f6b083b
commit
aad8289d4e
23
experiments/bram/README.md
Normal file
23
experiments/bram/README.md
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
# About
|
||||||
|
|
||||||
|
Trying to get a feel for what might constitute a good flow when
|
||||||
|
needing to inspect simulated memories in Bluespec.
|
||||||
|
|
||||||
|
Here, we simulate a small BRAM and try to print out some of its
|
||||||
|
values in TCL.
|
||||||
|
|
||||||
|
# Compiling and Simulating
|
||||||
|
|
||||||
|
## Without TCL
|
||||||
|
|
||||||
|
```bash
|
||||||
|
bsc -sim -u -g mkTestbench Testbench.bsv; bsc -sim -e mkTestbench -o simBRAM;
|
||||||
|
./simBRAM -V
|
||||||
|
```
|
||||||
|
|
||||||
|
## With TCL
|
||||||
|
|
||||||
|
```bash
|
||||||
|
bsc -sim -u -g mkTestbench Testbench.bsv; bsc -sim -e mkTestbench -o simBRAM;
|
||||||
|
bluetcl sim_inspect.tcl
|
||||||
|
```
|
Loading…
Reference in a new issue