source: vis_dev/vis-2.3/models/debug/and2.v @ 36

Last change on this file since 36 was 36, checked in by cecile, 12 years ago

Add Abnormal predicate structures

File size: 138 bytes
Line 
1module andgate(clk,a,b);
2input clk;
3input a;
4input b;
5
6reg c;
7
8initial c = 0;
9
10
11always @(posedge clk)
12begin
13        c = a & b ;
14end
15endmodule 
16
17
Note: See TracBrowser for help on using the repository browser.