1 | // ========== Copyright Header Begin ========================================== |
---|
2 | // |
---|
3 | // OpenSPARC T1 Processor File: bw_clk_cl_fpu_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 | module bw_clk_cl_fpu_cmp ( |
---|
22 | so, |
---|
23 | dbginit_l, |
---|
24 | cluster_grst_l, |
---|
25 | rclk, |
---|
26 | si, |
---|
27 | se, |
---|
28 | adbginit_l, |
---|
29 | gdbginit_l, |
---|
30 | arst_l, |
---|
31 | grst_l, |
---|
32 | cluster_cken, |
---|
33 | gclk |
---|
34 | ); |
---|
35 | |
---|
36 | output so; |
---|
37 | output dbginit_l; |
---|
38 | output cluster_grst_l; |
---|
39 | output rclk; |
---|
40 | input si; |
---|
41 | input se; |
---|
42 | input adbginit_l; |
---|
43 | input gdbginit_l; |
---|
44 | input arst_l; |
---|
45 | input grst_l; |
---|
46 | input cluster_cken; |
---|
47 | input gclk; |
---|
48 | |
---|
49 | cluster_header I0 ( |
---|
50 | .rclk (rclk ), |
---|
51 | .so (so ), |
---|
52 | .dbginit_l (dbginit_l ), |
---|
53 | .cluster_grst_l (cluster_grst_l ), |
---|
54 | .si (si ), |
---|
55 | .se (se ), |
---|
56 | .adbginit_l (adbginit_l ), |
---|
57 | .gdbginit_l (gdbginit_l ), |
---|
58 | .arst_l (arst_l ), |
---|
59 | .grst_l (grst_l ), |
---|
60 | .cluster_cken (cluster_cken ), |
---|
61 | .gclk (gclk ) |
---|
62 | ); |
---|
63 | |
---|
64 | endmodule |
---|
65 | |
---|