Skip to content
Snippets Groups Projects
Commit 98952700 authored by Lucas Russo's avatar Lucas Russo Committed by Paweł Szostek
Browse files

test/*: add convinient files for running simulation

After running hdlmake --make-isim, all that is necessary to do is
running run.sh script
parent 2839797d
Branches
Tags
No related merge requests found
run 1000 ns
#!/bin/bash
# Tests for empty parameter
if [ -z $1 ] ; then
echo "You must specify a top module testbench!";
echo "Usage: $0 <TOP_MODULE_WITHOUT_EXTENSION>";
exit 1;
fi
make && make fuse TOP_MODULE=$1 && ./isim_proj -view wave.wcfg -tclbatch isim_cmd -gui
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment