forked from github/verilator
50 lines
1.0 KiB
Perl
Executable File
50 lines
1.0 KiB
Perl
Executable File
#!/usr/bin/env perl
|
|
# See copyright, etc in below POD section.
|
|
######################################################################
|
|
|
|
use warnings;
|
|
use strict;
|
|
|
|
#======================================================================
|
|
# main
|
|
|
|
eval `modulecmd perl add axiom-athdl`;
|
|
exec('atsim',@ARGV);
|
|
|
|
#######################################################################
|
|
__END__
|
|
|
|
=pod
|
|
|
|
=head1 NAME
|
|
|
|
invoke_atsim - Invoke tool under "modules" command
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
invoke_atsim {ncv arguments}
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
=head1 DISTRIBUTION
|
|
|
|
Copyright 2005-2020 by Wilson Snyder. This program 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.
|
|
|
|
SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
|
|
|
|
=head1 AUTHORS
|
|
|
|
Wilson Snyder <wsnyder@wsnyder.org>
|
|
|
|
=head1 SEE ALSO
|
|
|
|
=cut
|
|
|
|
######################################################################
|
|
### Local Variables:
|
|
### compile-command: "./invoke_atsim -help"
|
|
### End:
|