Subject: | Bugs about verilog vcd writer |
Date: | Thu, 23 Nov 2017 16:23:02 -0500 |
To: | "bug-Verilog-VCD-Writer [...] rt.cpan.org" <bug-Verilog-VCD-Writer [...] rt.cpan.org> |
From: | <michaelsundmlis [...] gmail.com> |
use Verilog::VCD::Writer;
By copyting the Synopsis code directly, it could not pass.
1) With this, not all commands under it will be loaded. In the synopsis, addSignal is the module under Verilog::VCD::Writer::Module.
As a result, the code on Synopsis will raise an error directly, as perl cannot find addSignal directly under writer.pm
Can't locate object method "addSignal" via package "Verilog::VCD::Writer" at tester.pl line 6.
2) In module.pm, addSignal module, line 41, $self->signals_push($s) cannot activate the command “push”. It will raised the error such that
Can't locate object method "signals_push" via package "Verilog::VCD::Writer" at /home/cqsun/lib/perl5/lib/site_perl/5.18.2/Verilog/VCD/Writer/Module.pm line 41.
Please contact me as soon as possible about the errors or my mistakes.
Sincerely,
Chuanqi Sun