forked from Github_Repos/cvw
Started vclean script to clean Verilog
This commit is contained in:
parent
2188ff879b
commit
dfddca3ed3
11
bin/vclean.pl
Normal file
11
bin/vclean.pl
Normal file
@ -0,0 +1,11 @@
|
||||
#!/usr/bin/perl -w
|
||||
|
||||
# vclean.pl
|
||||
# David_Harris@hmc.edu 7 December 2023
|
||||
# Identifies unused signals in Verilog files
|
||||
# verilator should do this, but it also reports partially used signals
|
||||
|
||||
for (my $i=0; $i<=$#ARGV; $i++) {
|
||||
my $fname = $ARGV[$i];
|
||||
printf ("$fname\n");
|
||||
}
|
Loading…
Reference in New Issue
Block a user