diff options
author | Clifford Wolf <clifford@clifford.at> | 2015-01-13 12:59:29 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2015-01-13 12:59:29 +0100 |
commit | dfa42e272cd13a08314299817423052488eb58ab (patch) | |
tree | 4560c10675ac9934833d5dd59ea4b46ded320567 /tests/tools | |
parent | dd699e03c111d11c7780863773993df34fee1726 (diff) | |
download | yosys-dfa42e272cd13a08314299817423052488eb58ab.tar.gz yosys-dfa42e272cd13a08314299817423052488eb58ab.tar.bz2 yosys-dfa42e272cd13a08314299817423052488eb58ab.zip |
Tiny fix in vcdcd.pl
Diffstat (limited to 'tests/tools')
-rwxr-xr-x | tests/tools/vcdcd.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/tools/vcdcd.pl b/tests/tools/vcdcd.pl index 2abfb7a21..6f497e99c 100755 --- a/tests/tools/vcdcd.pl +++ b/tests/tools/vcdcd.pl @@ -80,8 +80,8 @@ for my $net (sort keys %gold_signals_hash) { for my $fullname (keys $gate_signals_hash{$net}) { $orig_net_names{$fullname} = 1; } - for my $_ (sort keys %orig_net_names) { - push @signals, $_; + for my $net (sort keys %orig_net_names) { + push @signals, $net; print " $1" if /(\[([0-9]+|[0-9]+:[0-9]+)\])$/; } print "\n"; |