blob: 9bc71438703fc0109e450f09c27dc619455bc7f9 (
plain)
1
2
3
4
5
6
7
|
#!/bin/sh
iverilog -y ../lib/ -y ../../../../usrp/fpga/sdr_lib \
sounder_tb.v -o sounder_tb && \
./sounder_tb > sounder_tb.out && \
grep 'rst=0' sounder_tb.out | grep 'clk=1' > sounder_tb.out2 && \
grep 'tx_strobe=1' sounder_tb.out2 > sounder_tb.out3
|