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