mirror of
https://github.com/verilator/verilator.git
synced 2025-01-09 16:17:36 +00:00
13 lines
170 B
Perl
13 lines
170 B
Perl
|
#!/usr/bin/perl
|
||
|
if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); die; }
|
||
|
|
||
|
compile (
|
||
|
);
|
||
|
|
||
|
execute (
|
||
|
check_finished=>1,
|
||
|
);
|
||
|
|
||
|
ok(1);
|
||
|
1;
|