mirror of
https://github.com/pConst/basic_verilog.git
synced 2025-01-14 06:42:54 +08:00
7 lines
130 B
Bash
7 lines
130 B
Bash
#!sh
|
|
for i in ../test/*rmh;
|
|
do
|
|
echo $i
|
|
rm compare3_tb.vcd; make compare3_tb.vcd TEST_FILE=$i TEST_CYCLES=5000 TEST_IRQ=1000;
|
|
done
|