[logo] 
 
Home
News
Activity
About/Contact
Major Tools
  Dinotrace
  Verilator
  Verilog-mode
  Verilog-Perl
Other Tools
  BugVise
  CovVise
  Force-Gate-Sim
  Gspice
  IPC::Locker
  Rsvn
  Schedule::Load
  SVN::S4
  Synopsys-modes
  SystemPerl
  Verilog-Pli
  Voneline
  Vregs
General Info
  Papers

t_BUG.pl

Lane Brooks, 01/30/2009 05:33 pm

Download (432 Bytes)

 
1
#!/usr/bin/perl
2
if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); die; }
3
# DESCRIPTION: Verilator: Verilog Test driver/expect definition
4
#
5
# Copyright 2003 by Wilson Snyder. This program is free software; you can
6
# redistribute it and/or modify it under the terms of either the GNU
7
# General Public License or the Perl Artistic License.
8

    
9
compile (
10
	 );
11

    
12
execute (
13
	 check_finished=>1,
14
     );
15

    
16
ok(1);
17
1;