/usr/lib/perl5/Verilog/Getopt.pm is in libverilog-perl 3.403-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 | # See copyright, etc in below POD section.
######################################################################
package Verilog::Getopt;
require 5.000;
require Exporter;
use strict;
use vars qw($VERSION $Debug %Skip_Basenames);
use Carp;
use IO::File;
use File::Basename;
use File::Spec;
use Cwd;
######################################################################
#### Configuration Section
$VERSION = '3.403';
# Basenames we should ignore when recursing directories,
# Because they contain large files of no relevance
foreach ( '.', '..',
'CVS',
'.svn',
'.snapshot',
'blib',
) {
$Skip_Basenames{$_} = 1;
}
#######################################################################
#######################################################################
#######################################################################
sub new {
@_ >= 1 or croak 'usage: Verilog::Getopt->new ({options})';
my $class = shift; # Class (Getopt Element)
$class ||= "Verilog::Getopt";
my $self = {defines => {},
incdir => ['.', ],
module_dir => ['.', ],
libext => ['.v', ],
library => [ ],
gcc_style => 1,
vcs_style => 1,
filename_expansion => 0,
fileline => 'Command_Line',
unparsed => [],
define_warnings => 1,
depend_files => {},
@_
};
bless $self, $class;
return $self;
}
#######################################################################
# Option parsing
sub _filedir {
my $self = shift;
my $path = shift;
$path =~ s![/\\][^/\\]*$!! # ~~== my @dirs = File::Spec->splitdir( $path );
or $path = ".";
return "." if $path eq '';
return $path
}
sub parameter_file {
my $self = shift;
my $filename = shift;
my $relative = shift;
print "*parameter_file $filename\n" if $Debug;
my $optdir = ".";
if ($relative) { $optdir = $self->_filedir($filename); }
my $fh = IO::File->new("<$filename") or die "%Error: ".$self->fileline().": $! $filename\n";
my $hold_fileline = $self->fileline();
while (my $line = $fh->getline()) {
chomp $line;
$line =~ s/\/\/.*$//;
next if $line =~ /^\s*$/;
$self->fileline ("$filename:$.");
my @p = (split /\s+/,"$line ");
$self->_parameter_parse($optdir, @p);
}
$fh->close();
$self->fileline($hold_fileline);
}
sub parameter {
my $self = shift;
# Parse VCS like parameters, and perform standard setup based on it
# Return list of leftover parameters
@{$self->{unparsed}} = ();
$self->_parameter_parse('.', @_);
return @{$self->{unparsed}};
}
sub _parameter_parse {
my $self = shift;
my $optdir = shift;
# Internal: Parse list of VCS like parameters, and perform standard setup based on it
foreach my $oparam (@_) {
my $param = "$oparam"; # Must quote to convert Getopt to string, bug298
next if ($param =~ /^\s*$/);
print " parameter($param)\n" if $Debug;
### GCC & VCS style
if ($param eq '-F'
|| $param eq '-f') {
$self->{_parameter_next} = $param;
}
### VCS style
elsif (($param eq '-v'
|| $param eq '-y') && $self->{vcs_style}) {
$self->{_parameter_next} = $param;
}
elsif ($param =~ /^\+libext\+(.*)$/ && $self->{vcs_style}) {
my $ext = $1;
foreach (split /\+/, $ext) {
$self->libext($_);
}
}
elsif ($param =~ /^\+incdir\+(.*)$/ && $self->{vcs_style}) {
$self->incdir($self->_parse_file_arg($optdir, $1));
}
elsif (($param =~ /^\+define\+([^+=]*)[+=](.*)$/
|| $param =~ /^\+define\+(.*?)()$/) && $self->{vcs_style}) {
$self->define($1,$2,undef,1);
}
# Ignored
elsif ($param =~ /^\+librescan$/ && $self->{vcs_style}) {
}
### GCC style
elsif (($param =~ /^-D([^=]*)=(.*)$/
|| $param =~ /^-D([^=]*)()$/) && $self->{gcc_style}) {
$self->define($1,$2,undef,1);
}
elsif (($param =~ /^-U([^=]*)$/) && $self->{gcc_style}) {
$self->undef($1);
}
elsif ($param =~ /^-I(.*)$/ && $self->{gcc_style}) {
$self->incdir($self->_parse_file_arg($optdir, $1));
}
# Second parameters
elsif ($self->{_parameter_next}) {
my $pn = $self->{_parameter_next};
$self->{_parameter_next} = undef;
if ($pn eq '-F') {
$self->parameter_file ($self->_parse_file_arg($optdir,$param), 1);
}
elsif ($pn eq '-f') {
$self->parameter_file ($self->_parse_file_arg($optdir,$param), 0);
}
elsif ($pn eq '-v') {
$self->library ($self->_parse_file_arg($optdir,$param));
}
elsif ($pn eq '-y') {
$self->module_dir ($self->_parse_file_arg($optdir,$param));
}
else {
die "%Error: ".$self->fileline().": Bad internal next param ".$pn;
}
}
else { # Unknown.
if ($self->{filename_expansion}
&& $param !~ /^-.*$/ # Presume not a file
&& $optdir ne '.') {
# If it is a filename, we should ensure it is
# relative to $optdir. We assume anything without a leading '-'
# is a file, bug 444.
my $fn = $self->_parse_file_arg($optdir,$param);
if (-e $fn) {
push @{$self->{unparsed}}, "$fn";
} else {
push @{$self->{unparsed}}, "$param";
}
} else {
push @{$self->{unparsed}}, "$param";
}
}
}
}
sub _parse_file_arg {
my $self = shift;
my $optdir = shift;
my $relfilename = shift;
# Parse filename on option line, expanding relative paths in -F's
my $filename = $self->file_substitute($relfilename);
if ($optdir ne "." && ! File::Spec->file_name_is_absolute($filename)) {
$filename = File::Spec->catfile($optdir,$filename);
}
return $filename;
}
#######################################################################
# Accessors
sub fileline {
my $self = shift;
if (@_) { $self->{fileline} = shift; }
return ($self->{fileline});
}
sub incdir {
my $self = shift;
if (@_) {
my $token = shift;
print "incdir $token\n" if $Debug;
if (ref($token) && ref($token) eq 'ARRAY') {
@{$self->{incdir}} = @{$token};
} else {
push @{$self->{incdir}}, $self->file_abs($token);
}
$self->file_path_cache_flush();
}
return (wantarray ? @{$self->{incdir}} : $self->{incdir});
}
sub libext {
my $self = shift;
if (@_) {
my $token = shift;
print "libext $token\n" if $Debug;
if (ref($token) && ref($token) eq 'ARRAY') {
@{$self->{libext}} = @{$token};
} else {
push @{$self->{libext}}, $token;
}
$self->file_path_cache_flush();
}
return (wantarray ? @{$self->{libext}} : $self->{libext});
}
sub library {
my $self = shift;
if (@_) {
my $token = shift;
print "library $token\n" if $Debug;
if (ref($token) && ref($token) eq 'ARRAY') {
@{$self->{library}} = @{$token};
} else {
push @{$self->{library}}, $self->file_abs($token);
}
}
return (wantarray ? @{$self->{library}} : $self->{library});
}
sub module_dir {
my $self = shift;
if (@_) {
my $token = shift;
print "module_dir $token\n" if $Debug;
if (ref($token) && ref($token) eq 'ARRAY') {
@{$self->{module_dir}} = @{$token};
} else {
push @{$self->{module_dir}}, $self->file_abs($token);
}
$self->file_path_cache_flush();
}
return (wantarray ? @{$self->{module_dir}} : $self->{module_dir});
}
sub depend_files {
my $self = shift;
if (@_) {
#@_ may be Getopt::Long::Parameters which aren't arrays, will stringify
if (ref($_[0]) && ref($_[0]) eq 'ARRAY') {
$self->{depend_files} = {};
foreach my $fn (@{$_[0]}) {
$self->{depend_files}{$fn} = 1;
}
} else {
foreach my $fn (@_) {
print "depend_files $fn\n" if $Debug;
$self->{depend_files}{$fn} = 1;
}
}
}
my @list = (sort (keys %{$self->{depend_files}}));
return (wantarray ? @list : \@list);
}
sub get_parameters {
my $self = shift;
my %args = (gcc_stlyle => $self->{gcc_style},);
# Defines
my @params = ();
foreach my $def ($self->define_names_sorted) {
my $defvalue = $self->defvalue($def);
$defvalue = "=".($defvalue||"") if (defined $defvalue && $defvalue ne "");
if ($args{gcc_style}) {
push @params, "-D${def}${defvalue}";
} else {
push @params, "+define+${def}${defvalue}";
}
}
# Put all libexts on one line, else NC-Verilog will bitch
my $exts="";
foreach my $ext ($self->libext()) {
$exts = "+libext" if !$exts;
$exts .= "+$ext";
}
push @params, $exts if $exts;
# Includes...
foreach my $dir ($self->incdir()) {
if ($args{gcc_style}) {
push @params, "-I${dir}";
} else {
push @params, "+incdir+${dir}";
}
}
foreach my $dir ($self->module_dir()) {
push @params, "-y", $dir;
}
foreach my $dir ($self->library()) {
push @params, "-v", $dir;
}
return (@params);
}
sub write_parameters_file {
my $self = shift;
my $filename = shift;
# Write get_parameters to a file
my $fh = IO::File->new(">$filename") or croak "%Error: $! writing $filename,";
my @opts = $self->get_parameters();
print $fh join("\n",@opts);
$fh->close;
}
#######################################################################
# Utility functions
sub remove_duplicates {
my $self = ref $_[0] && shift;
# return list in same order, with any duplicates removed
my @rtn;
my %hit;
foreach (@_) { push @rtn, $_ unless $hit{$_}++; }
return @rtn;
}
sub file_skip_special {
my $self = shift;
my $filename = shift;
$filename =~ s!.*[/\\]!!;
return $Skip_Basenames{$filename};
}
sub file_abs {
my $self = shift;
my $filename = shift;
# return absolute filename
# If the user doesn't want this absolutification, they can just
# make their own derived class and override this function.
#
# We don't absolutify files that don't have any path,
# as file_path() will probably be used to resolve them.
return $filename;
return $filename if ("" eq dirname($filename));
return $filename if File::Spec->file_name_is_absolute($filename);
# Cwd::abspath() requires files to exist. Too annoying...
$filename = File::Spec->canonpath(File::Spec->catdir(Cwd::getcwd(),$filename));
return $filename;
}
sub file_substitute {
my $self = shift;
my $filename = shift;
my $out = $filename;
while ($filename =~ /\$([A-Za-z_0-9]+)\b/g) {
my $var = $1;
if (defined $ENV{$var}) {
$out =~ s/\$$var\b/$ENV{$var}/g;
}
}
$out =~ s!^~!$ENV{HOME}/!;
return $out;
}
sub file_path_cache_flush {
my $self = shift;
# Clear out a file_path cache, needed if the incdir/module_dirs change
$self->{_file_path_cache} = {};
}
sub file_path {
my $self = shift;
my $filename = shift;
my $lookup_type = shift || 'all';
# return path to given filename using library directories & files, or undef
# locations are cached, because -r can be a very slow operation
defined $filename or carp "%Error: Undefined filename,";
return $self->{_file_path_cache}{$filename} if defined $self->{_file_path_cache}{$filename};
if (-r $filename && !-d $filename) {
$self->{_file_path_cache}{$filename} = $filename;
$self->depend_files($filename);
return $filename;
}
# Try expanding environment
$filename = $self->file_substitute($filename);
if (-r $filename && !-d $filename) {
$self->{_file_path_cache}{$filename} = $filename;
$self->depend_files($filename);
return $filename;
}
# What paths to use?
my @dirlist;
if ($lookup_type eq 'module') {
@dirlist = $self->module_dir();
} elsif ($lookup_type eq 'include') {
@dirlist = $self->incdir();
} else { # all
# Might be more obvious if -y had priority, but we'll remain back compatible
@dirlist = ($self->incdir(), $self->module_dir());
}
# Expand any envvars in incdir/moduledir
@dirlist = map {$self->file_substitute($_)} @dirlist;
# Check each search path
# We use both the incdir and moduledir. This isn't strictly correct,
# but it's fairly silly to have to specify both all of the time.
my %checked_dir = ();
my %checked_file = ();
foreach my $dir (@dirlist) {
next if $checked_dir{$dir}; $checked_dir{$dir}=1; # -r can be quite slow
# Check each postfix added to the file
foreach my $postfix ("", @{$self->{libext}}) {
my $found = "$dir/$filename$postfix";
next if $checked_file{$found}; $checked_file{$found}=1; # -r can be quite slow
if (-r $found && !-d $found) {
$self->{_file_path_cache}{$filename} = $found;
$self->depend_files($found);
return $found;
}
}
}
return $filename; # Let whoever needs it discover it doesn't exist
}
sub libext_matches {
my $self = shift;
my $filename = shift;
return undef if !$filename;
foreach my $postfix (@{$self->{libext}}) {
my $re = quotemeta($postfix) . "\$";
return $filename if ($filename =~ /$re/);
}
return undef;
}
sub map_directories {
my $self = shift;
my $func = shift;
# Execute map function on all directories listed in self.
{
my @newdir = $self->incdir();
@newdir = map {&{$func}} @newdir;
$self->incdir(\@newdir);
}
{
my @newdir = $self->module_dir();
@newdir = map {&{$func}} @newdir;
$self->module_dir(\@newdir);
}
}
#######################################################################
# Getopt functions
sub define_names_sorted {
my $self = shift;
return (sort (keys %{$self->{defines}}));
}
sub defcmdline {
my $self = shift;
my $token = shift;
my $val = $self->{defines}{$token};
if (ref $val) {
return $val->[2];
} else {
return undef;
}
}
sub defparams {
my $self = shift;
my $token = shift;
my $val = $self->{defines}{$token};
if (!defined $val) {
return undef;
} elsif (ref $val && defined $val->[1]) {
return $val->[1]; # Has parameters hash, return param list or undef
} else {
return 0;
}
}
sub defvalue {
my $self = shift;
my $token = shift;
my $val = $self->{defines}{$token};
(defined $val) or carp "%Warning: ".$self->fileline().": No definition for $token,";
if (ref $val) {
return $val->[0]; # Has parameters, return just value
} else {
return $val;
}
}
sub defvalue_nowarn {
my $self = shift;
my $token = shift;
my $val = $self->{defines}{$token};
if (ref $val) {
return $val->[0]; # Has parameters, return just value
} else {
return $val;
}
}
sub define {
my $self = shift;
if (@_) {
my $token = shift;
my $value = shift;
my $params = shift;
my $cmdline = shift;
print "Define $token ".($params||'')."= $value\n" if $Debug;
my $oldval = $self->{defines}{$token};
my $oldparams;
if (ref $oldval eq 'ARRAY') {
($oldval, $oldparams) = @{$oldval};
}
if (defined $oldval
&& (($oldval ne $value)
|| (($oldparams||'') ne ($params||'')))
&& $self->{define_warnings}) {
warn "%Warning: ".$self->fileline().": Redefining `$token\n";
}
if ($params || $cmdline) {
$self->{defines}{$token} = [$value, $params, $cmdline];
} else {
$self->{defines}{$token} = $value;
}
}
}
sub undef {
my $self = shift;
my $token = shift;
my $oldval = $self->{defines}{$token};
# We no longer warn about undefing something that doesn't exist, as other compilers don't
#(defined $oldval or !$self->{define_warnings})
# or carp "%Warning: ".$self->fileline().": No definition to undef for $token,";
delete $self->{defines}{$token};
}
sub undefineall {
my $self = shift;
foreach my $def (keys %{$self->{defines}}) {
if (!$self->defcmdline($def)) {
delete $self->{defines}{$def};
}
}
}
sub remove_defines {
my $self = shift;
my $sym = shift;
my $val = "x";
while (defined $val) {
last if $sym eq $val;
(my $xsym = $sym) =~ s/^\`//;
$val = $self->defvalue_nowarn($xsym); #Undef if not found
$sym = $val if defined $val;
}
return $sym;
}
######################################################################
### Package return
1;
__END__
=pod
=head1 NAME
Verilog::Getopt - Get Verilog command line options
=head1 SYNOPSIS
use Verilog::Getopt;
my $opt = new Verilog::Getopt;
$opt->parameter (qw( +incdir+standard_include_directory ));
@ARGV = $opt->parameter (@ARGV);
...
print "Path to foo.v is ", $opt->file_path('foo.v');
=head1 DESCRIPTION
Verilog::Getopt provides standardized handling of options similar to
Verilog/VCS and cc/GCC.
=head1 OPTIONS
The new() constructor accepts the following options:
=over 4
=item filename_expansion=>1
Enable converting filenames to relative filenames when possible. This
option is needed when the -F option will be used. If flags are passed
through Getopt which should otherwise not be expanded (e.g. "--out
myfile.v") having this option set may undesirably expand myfile.v to an
absolute filename.
=item gcc_style=>0
Disable parsing of GCC-like parameters.
=item vcs_style=>0
Disable parsing of VCS-like parameters.
=back
=head1 METHODS
=over 4
=item $opt = Verilog::Getopt->new ( I<opts> )
Create a new Getopt. See OPTIONS above.
=item $self->file_path ( I<filename>, [I<lookup_type>] )
Returns a new path to the filename, using the library directories and
search paths to resolve the file. Optional lookup_type is 'module',
'include', or 'all', to use only module_dirs, incdirs, or both for the
lookup.
=item $self->get_parameters ( )
Returns a list of parameters that when passed through $self->parameter()
should result in the same state. Often this is used to form command lines
for downstream programs that also use Verilog::Getopt.
=item $self->parameter ( \@params )
Parses any recognized parameters in the referenced array, removing the
standard parameters and returning a array with all unparsed parameters.
The below list shows the VCS-like parameters that are supported, and the
functions that are called:
+libext+I<ext>+I<ext>... libext (I<ext>)
+incdir+I<dir> incdir (I<dir>)
+define+I<var>[+=]I<value> define (I<var>,I<value>)
+define+I<var> define (I<var>,undef)
+librescan Ignored
-F I<file> Parse parameters in file relatively
-f I<file> Parse parameters in file
-v I<file> library (I<file>)
-y I<dir> module_dir (I<dir>)
all others Put in returned list
The below list shows the GCC-like parameters that are supported, and the
functions that are called:
-DI<var>=I<value> define (I<var>,I<value>)
-DI<var> define (I<var>,undef)
-UI<var> undefine (I<var>)
-II<dir> incdir (I<dir>)
-F I<file> Parse parameters in file relatively
-f I<file> Parse parameters in file
all others Put in returned list
=item $self->write_parameters_file ( I<filename> )
Write the output from get_parameters to the specified file.
=back
=head1 ACCESSORS
=over 4
=item $self->define ( $token, $value )
This method is called when a define is recognized. The default behavior
loads a hash that is used to fulfill define references. This function may
also be called outside parsing to predefine values.
An optional third argument specifies parameters to the define, and a fourth
argument if true indicates the define was set on the command line and
should not be removed by `undefineall.
=item $self->define_names_sorted
Return sorted list of all define names that currently exist.
=item $self->defparams ( $token )
This method returns the parameter list of the define. This will be defined,
but false, if the define does not have arguments.
=item $self->defvalue ( $token )
This method returns the value of a given define, or prints a warning.
=item $self->defvalue_nowarn ( $token )
This method returns the value of a given define, or undef.
=item $self->depend_files ()
Returns reference to list of filenames referenced with file_path, useful
for creating dependency lists. With argument, adds that file. With list
reference argument, sets the list to the argument.
=item $self->file_abs ( $filename )
Using the incdir and libext lists, convert the specified module or filename
("foo") to a absolute filename ("include/dir/foo.v").
=item $self->file_skip_special ( $filename )
Return true if the filename is one that generally should be ignored when
recursing directories, such as for example, ".", "CVS", and ".svn".
=item $self->file_substitute ( $filename )
Removes existing environment variables from the provided filename. Any
undefined variables are not substituted nor cause errors.
=item $self->incdir ()
Returns reference to list of include directories. With argument, adds that
directory.
=item $self->libext ()
Returns reference to list of library extensions. With argument, adds that
extension.
=item $self->libext_matches (I<filename>)
Returns true if the passed filename matches the libext.
=item $self->library ()
Returns reference to list of libraries. With argument, adds that library.
=item $self->module_dir ()
Returns reference to list of module directories. With argument, adds that
directory.
=item $self->remove_defines ( $token )
Return string with any definitions in the token removed.
=item $self->undef ( $token )
Deletes a hash element that is used to fulfill define references. This
function may also be called outside parsing to erase a predefined value.
=item $self->undefineall ()
Deletes all non-command line definitions, for implementing `undefineall.
=back
=head1 DISTRIBUTION
Verilog-Perl is part of the L<http://www.veripool.org/> free Verilog EDA
software tool suite. The latest version is available from CPAN and from
L<http://www.veripool.org/verilog-perl>.
Copyright 2000-2014 by Wilson Snyder. This package is free software; you
can redistribute it and/or modify it under the terms of either the GNU
Lesser General Public License Version 3 or the Perl Artistic License Version 2.0.
=head1 AUTHORS
Wilson Snyder <wsnyder@wsnyder.org>
=head1 SEE ALSO
L<Verilog-Perl>,
L<Verilog::Language>
=
cut
|