diff --git a/experiments/bram/README.md b/experiments/bram/README.md new file mode 100644 index 0000000..a7ca319 --- /dev/null +++ b/experiments/bram/README.md @@ -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 +``` \ No newline at end of file