1 | // ========== Copyright Header Begin ========================================== |
---|
2 | // |
---|
3 | // OpenSPARC T1 Processor File: bw_clk_cl_sparc_cmp.v |
---|
4 | // Copyright (c) 2006 Sun Microsystems, Inc. All Rights Reserved. |
---|
5 | // DO NOT ALTER OR REMOVE COPYRIGHT NOTICES. |
---|
6 | // |
---|
7 | // The above named program is free software; you can redistribute it and/or |
---|
8 | // modify it under the terms of the GNU General Public |
---|
9 | // License version 2 as published by the Free Software Foundation. |
---|
10 | // |
---|
11 | // The above named program is distributed in the hope that it will be |
---|
12 | // useful, but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
13 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
14 | // General Public License for more details. |
---|
15 | // |
---|
16 | // You should have received a copy of the GNU General Public |
---|
17 | // License along with this work; if not, write to the Free Software |
---|
18 | // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. |
---|
19 | // |
---|
20 | // ========== Copyright Header End ============================================ |
---|
21 | |
---|
22 | module bw_clk_cl_sparc_cmp(/*AUTOARG*/ |
---|
23 | // Outputs |
---|
24 | so, rclk, dbginit_l, cluster_grst_l, |
---|
25 | // Inputs |
---|
26 | si, se, grst_l, gdbginit_l, gclk, cluster_cken, arst_l, |
---|
27 | adbginit_l |
---|
28 | ); |
---|
29 | |
---|
30 | /*AUTOOUTPUT*/ |
---|
31 | // Beginning of automatic outputs (from unused autoinst outputs) |
---|
32 | output cluster_grst_l; // From I0 of cluster_header.v |
---|
33 | output dbginit_l; // From I0 of cluster_header.v |
---|
34 | output rclk; // From I0 of cluster_header.v |
---|
35 | output so; // From I0 of cluster_header.v |
---|
36 | // End of automatics |
---|
37 | /*AUTOINPUT*/ |
---|
38 | // Beginning of automatic inputs (from unused autoinst inputs) |
---|
39 | input adbginit_l; // To I0 of cluster_header.v |
---|
40 | input arst_l; // To I0 of cluster_header.v |
---|
41 | input cluster_cken; // To I0 of cluster_header.v |
---|
42 | input gclk; // To I0 of cluster_header.v |
---|
43 | input gdbginit_l; // To I0 of cluster_header.v |
---|
44 | input grst_l; // To I0 of cluster_header.v |
---|
45 | input se; // To I0 of cluster_header.v |
---|
46 | input si; // To I0 of cluster_header.v |
---|
47 | // End of automatics |
---|
48 | /*AUTOWIRE*/ |
---|
49 | // Beginning of automatic wires (for undeclared instantiated-module outputs) |
---|
50 | // End of automatics |
---|
51 | |
---|
52 | cluster_header I0 (/*AUTOINST*/ |
---|
53 | // Outputs |
---|
54 | .dbginit_l (dbginit_l), |
---|
55 | .cluster_grst_l (cluster_grst_l), |
---|
56 | .rclk (rclk), |
---|
57 | .so (so), |
---|
58 | // Inputs |
---|
59 | .gclk (gclk), |
---|
60 | .cluster_cken (cluster_cken), |
---|
61 | .arst_l (arst_l), |
---|
62 | .grst_l (grst_l), |
---|
63 | .adbginit_l (adbginit_l), |
---|
64 | .gdbginit_l (gdbginit_l), |
---|
65 | .si (si), |
---|
66 | .se (se)); |
---|
67 | |
---|
68 | //output so ; |
---|
69 | //output dbginit_l ; |
---|
70 | //output cluster_grst_l ; |
---|
71 | //output rclk ; |
---|
72 | //input si ; |
---|
73 | //input se ; |
---|
74 | //input adbginit_l ; |
---|
75 | //input gdbginit_l ; |
---|
76 | //input arst_l ; |
---|
77 | //input grst_l ; |
---|
78 | //input cluster_cken ; |
---|
79 | //input gclk ; |
---|
80 | |
---|
81 | endmodule // bw_clk_cl_sparc_cmp |
---|
82 | |
---|
83 | // Local Variables: |
---|
84 | // verilog-library-directories:("." "../../common/rtl") |
---|
85 | // End: |
---|