File: t_gate_elim.v

package info (click to toggle)
verilator 5.038-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 162,552 kB
  • sloc: cpp: 139,204; python: 20,931; ansic: 10,222; yacc: 6,000; lex: 1,925; makefile: 1,260; sh: 494; perl: 282; fortran: 22
file content (122 lines) | stat: -rw-r--r-- 2,572 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed under the Creative Commons Public Domain, for
// any use, without warranty, 2005 by Wilson Snyder.
// SPDX-License-Identifier: CC0-1.0

module t (/*AUTOARG*/
   // Inputs
   clk
   );

   input clk;
   integer cyc; initial cyc=1;

   reg   b;

   wire  vconst1 = 1'b0;
   wire  vconst2 = !(vconst1);
   wire  vconst3 = !vconst2;
   wire  vconst = vconst3;

   wire       qa;
   wire       qb;
   wire       qc;
   wire       qd;
   wire       qe;
   ta ta (.b(b), .vconst(vconst), .q(qa));
   tb tb (.clk(clk), .vconst(vconst), .q(qb));
   tc tc (.b(b), .vconst(vconst), .q(qc));
   td td (.b(b), .vconst(vconst), .q(qd));
   te te (.clk(clk), .b(b), .vconst(vconst), .q(qe));

   always @ (posedge clk) begin
`ifdef TEST_VERBOSE
      $display("%b",{qa,qb,qc,qd,qe});
`endif
      if (cyc!=0) begin
         cyc <= cyc + 1;
         if (cyc==1) begin
            b <= 1'b1;
         end
         if (cyc==2) begin
            if (qa!=1'b1) $stop;
            if (qb!=1'b0) $stop;
            if (qd!=1'b0) $stop;
            b <= 1'b0;
         end
         if (cyc==3) begin
            if (qa!=1'b0) $stop;
            if (qb!=1'b0) $stop;
            if (qd!=1'b0) $stop;
            if (qe!=1'b0) $stop;
            b <= 1'b1;
         end
         if (cyc==4) begin
            if (qa!=1'b1) $stop;
            if (qb!=1'b0) $stop;
            if (qd!=1'b0) $stop;
            if (qe!=1'b1) $stop;
            b <= 1'b0;
         end
         if (cyc==5) begin
            $write("*-* All Finished *-*\n");
            $finish;
         end
      end
   end
endmodule

module ta (
           input vconst,
           input b,
           output reg q);

   always @ (/*AS*/b or vconst) begin
      q = vconst | b;
   end
endmodule

module tb (
           input vconst,
           input clk,
           output reg q);

   always @ (posedge clk) begin
      q <= vconst;
   end
endmodule

module tc (
           input vconst,
           input b,
           output reg q);
   always @ (posedge vconst) begin
      q <= b;
      $stop;
   end
endmodule

module td (
           input vconst,
           input b,
           output reg q);

   always @ (/*AS*/vconst) begin
     q = vconst;
   end
endmodule

module te (
           input clk,
           input vconst,
           input b,
           output reg q);
   reg            qmid;
   always @ (posedge vconst or posedge clk) begin
      qmid <= b;
   end
   always @ (posedge clk or posedge vconst) begin
      q <= qmid;
   end
endmodule