source: HDLQ/TestBenches/TB.v @ 1

Revision 1, 203 bytes checked in by ttvmrc00, 13 years ago (diff)

upload iniziale

  • Property svn:executable set to *
Line 
1module test_bench;
2reg in,fault;
3wire out;
4
5
6Inverter INV (
7        .in (in),
8        .out(out),
9        .fault(fault)
10        );
11initial 
12begin     
13        in = 0;     
14        fault = 1;
15end     
16always
17     #5 in = !in;
18
19endmodule
20
21
Note: See TracBrowser for help on using the repository browser.