~ubuntu-branches/ubuntu/saucy/verilator/saucy-proposed

« back to all changes in this revision

Viewing changes to test_regress/t/t_package_verb.v

  • Committer: Package Import Robot
  • Author(s): أحمد المحمودي (Ahmed El-Mahmoudy)
  • Date: 2013-02-10 17:14:43 UTC
  • mfrom: (1.2.17)
  • Revision ID: package-import@ubuntu.com-20130210171443-58ibaqe3eq5uitns
Tags: 3.845-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// DESCRIPTION: Verilator: Verilog Test module
 
2
//
 
3
// This file ONLY is placed into the Public Domain, for any use,
 
4
// without warranty, 2013 by Wilson Snyder.
 
5
 
 
6
// bug474
 
7
package verb_pkg;
 
8
   typedef enum int {VERB_I, 
 
9
                     VERB_W} Verb_t;
 
10
   Verb_t  verb = VERB_I;
 
11
   string message = " ";
 
12
endpackage
 
13
 
 
14
module t;
 
15
   import verb_pkg::*;
 
16
 
 
17
   string message  = "*x*";
 
18
   initial begin
 
19
      $write("*-* All Finished *-*\n");
 
20
      $finish;
 
21
   end
 
22
endmodule