source:
cegar_dev/cegar/abstract_model/Concret_Main.v
Last change on this file was 4, checked in by , 14 years ago | |
---|---|
File size: 173 bytes |
Rev | Line | |
---|---|---|
[4] | 1 | |
2 | module main(clk); | |
3 | ||
4 | input clk; | |
5 | input i1; | |
6 | output o1; | |
7 | output o2; | |
8 | output r_i1; | |
9 | ||
10 | machine_concret machine_concret1(clk, i1, o1, o2, r_i1); | |
11 | ||
12 | endmodule | |
13 | ||
14 | `include machine_concret.v |
Note: See TracBrowser
for help on using the repository browser.