yosys/tests/bram/run-single.sh

13 lines
541 B
Bash
Raw Normal View History

2015-01-01 12:42:39 -06:00
#!/bin/bash
set -e
../../yosys -qq -p "proc; opt; memory -nomap; memory_bram -rules temp/brams_${2}.txt; opt -fast -full" \
-l temp/synth_${1}_${2}.log -o temp/synth_${1}_${2}.v temp/brams_${1}.v
2015-01-01 17:07:44 -06:00
iverilog -Dvcd_file=\"temp/tb_${1}_${2}.vcd\" -o temp/tb_${1}_${2}.tb temp/brams_${1}_tb.v temp/brams_${1}_ref.v \
2015-01-01 12:42:39 -06:00
temp/synth_${1}_${2}.v temp/brams_${2}.v ../../techlibs/common/simlib.v
temp/tb_${1}_${2}.tb > temp/tb_${1}_${2}.txt
2015-01-02 06:59:47 -06:00
if grep -q ERROR temp/tb_${1}_${2}.txt; then
grep -HC2 ERROR temp/tb_${1}_${2}.txt | head
exit 1
fi
2015-01-01 12:42:39 -06:00
exit 0