forked from github/verilator
15 lines
238 B
Perl
15 lines
238 B
Perl
|
#!/usr/bin/perl
|
||
|
if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); die; }
|
||
|
|
||
|
$Self->{vlt} and $Self->unsupported("Verilator unsupported, tri");
|
||
|
|
||
|
compile (
|
||
|
);
|
||
|
|
||
|
execute (
|
||
|
check_finished=>1,
|
||
|
);
|
||
|
|
||
|
ok(1);
|
||
|
1;
|