File: t_lint_blksync_bad.v

package info (click to toggle)
verilator 3.864-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 12,272 kB
  • ctags: 19,637
  • sloc: cpp: 57,401; perl: 8,764; yacc: 2,559; lex: 1,727; makefile: 658; sh: 175
file content (47 lines) | stat: -rw-r--r-- 840 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
// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed into the Public Domain, for any use,
// without warranty, 2010 by Wilson Snyder.

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

   integer i;

   reg 	 sync_blk;
   reg 	 sync_blk2;
   reg 	 sync_nblk;
   reg   sync2_ok;
   reg   sync3_ok;
   reg 	 combo_blk;
   reg 	 combo_nblk;

   always @(posedge clk) begin
      sync_blk = 1'b1; 
      sync_blk2 = 1'b1;   // Only warn once per block
      sync_nblk <= 1'b1; 
   end

   always @* begin
      combo_blk = 1'b1; 
      combo_nblk <= 1'b1; 
   end

   always @(posedge clk) begin
      for (int i=0; i<20; i++) begin
	 sync2_ok <= 1'b1;
      end
   end

   always @(posedge clk) begin
      sync3_ok <= f(sync3_ok);
   end

   function f (input v);
      f = ~v;
   endfunction

endmodule