~ubuntu-branches/ubuntu/wily/verilator/wily-proposed

« back to all changes in this revision

Viewing changes to test_regress/t/t_trace_complex.v

  • Committer: Package Import Robot
  • Author(s): أحمد المحمودي (Ahmed El-Mahmoudy)
  • Date: 2014-03-16 21:30:31 UTC
  • mfrom: (1.2.26)
  • Revision ID: package-import@ubuntu.com-20140316213031-lnrjxk9tbky0oy5t
Tags: 3.856-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
   arru_arrp_t  v_arru_arrp;
44
44
   arru_strp_t  v_arru_strp;
45
45
 
 
46
   p #(.P(2)) p2 ();
 
47
   p #(.P(3)) p3 ();
 
48
 
46
49
   always @ (posedge clk) begin
47
50
      cyc <= cyc + 1;
48
51
      v_strp <= ~v_strp;
65
68
      end
66
69
   end
67
70
endmodule
 
71
 
 
72
module p;
 
73
   parameter P = 1;
 
74
endmodule