mirror of
https://github.com/verilator/verilator.git
synced 2025-01-07 15:17:36 +00:00
22 lines
490 B
Perl
Executable File
22 lines
490 B
Perl
Executable File
#!/usr/bin/perl
|
|
# This file ONLY is placed into the Public Domain, for any use,
|
|
# Author: Yu-Sheng Lin johnjohnlys@media.ee.ntu.edu.tw
|
|
|
|
if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); die; }
|
|
|
|
scenarios(vlt_all => 1);
|
|
|
|
compile(
|
|
v_flags2 => ["--trace-fst"],
|
|
);
|
|
|
|
execute(
|
|
check_finished => 1,
|
|
);
|
|
|
|
fst2vcd($Self->trace_filename, "$Self->{obj_dir}/simx-fst2vcd.vcd");
|
|
vcd_identical("$Self->{obj_dir}/simx-fst2vcd.vcd", $Self->{golden_filename});
|
|
|
|
ok(1);
|
|
1;
|