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

Last change on this file since 43 was 43, checked in by cecile, 13 years ago

petit bug protect_golden cmd

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