NAME

Verilog::Pli::IO - Verilog PLI I/O rerouting

SYNOPSIS

use Verilog::Pli::IO;

tie(*VOUT,'Verilog::Pli::IO');
print VOUT "This will go to screen and any sim logs.\n";
Verilog::Pli::IO->tie_stdout();
print "As will this.\n";
printf STDERR "And %s", "this.\n";

DESCRIPTION

This package allows a file to be outputted through the Verilog
PLI io_printf function, thus logging output on the screen as well as
in any log files.
Verilog::Pli::IO::tie_stdout ()
Connect STDOUT and STDERR to use the PLI printing handles.
Standard handle methods.

SEE ALSO

Verilog::Pli

DISTRIBUTION

The latest version is available from CPAN or http://www.ultranet.com/~wsnyder/verilog-perl.

AUTHORS

Wilson Snyder <wsnyder@wsnyder.org>