mirror of
https://github.com/openhwgroup/cvw
synced 2025-02-11 06:05:49 +00:00
Started vclean script to clean Verilog
This commit is contained in:
parent
6763f51b3c
commit
26001f8c3f
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