diff --git a/docs/guide/faq.rst b/docs/guide/faq.rst index a6067eb61..f342e55f0 100644 --- a/docs/guide/faq.rst +++ b/docs/guide/faq.rst @@ -226,12 +226,14 @@ How do I generate FST waveforms (traces) in C++ or SystemC? FST is a trace file format developed by GTKWave. Verilator provides basic FST support. To dump traces in FST format, add the :vlopt:`--trace-fst` -option to Verilator and either A. use :code:`$dumpfile & $dumpvars` in -Verilog as described in the VCD example above, +option to Verilator and either: + +Use :code:`$dumpfile & $dumpvars` in Verilog as described in the VCD +example above, Or, in C++ change the include described in the VCD example above: -.. code-block:: C++ + .. code-block:: C++ #include "verilated_fst_c.h" VerilatedFstC* tfp = new VerilatedFstC; @@ -239,14 +241,14 @@ Or, in C++ change the include described in the VCD example above: Or, in SystemC, change the include described in the VCD example above: -.. code-block:: C++ + .. code-block:: C++ #include "verilated_fst_sc.h" VerilatedFstC* tfp = new VerilatedFstSc; -Currently, supporting FST and VCD in a single simulation is impossible, but -such requirement should be rare. You can however ifdef around the trace +Currently, supporting FST and VCD in a single simulation is not supported, +but such usage should be unlikely. You can however ifdef around the trace format in your C++ main loop, and select VCD or FST at compile time. diff --git a/test_regress/t/t_vl_assign_sbw.pl b/test_regress/t/t_vl_assign_sbw.pl index 8d5b8bcd0..da724aa21 100755 --- a/test_regress/t/t_vl_assign_sbw.pl +++ b/test_regress/t/t_vl_assign_sbw.pl @@ -2,7 +2,7 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); die; } # DESCRIPTION: Verilator: Verilog Test driver/expect definition # -# Copyright 2024 by Antmicro. This program is free software; you +# Copyright 2024 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.