Initial commit of OpenSPARC T2 design and verification files.
[OpenSPARC-T2-DV] / design / sys / iop / ccx / rtl / ccx_trep.v
CommitLineData
86530b38
AT
1// ========== Copyright Header Begin ==========================================
2//
3// OpenSPARC T2 Processor File: ccx_trep.v
4// Copyright (C) 1995-2007 Sun Microsystems, Inc. All Rights Reserved
5// 4150 Network Circle, Santa Clara, California 95054, U.S.A.
6//
7// * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8//
9// This program is free software; you can redistribute it and/or modify
10// it under the terms of the GNU General Public License as published by
11// the Free Software Foundation; version 2 of the License.
12//
13// This program is distributed in the hope that it will be useful,
14// but WITHOUT ANY WARRANTY; without even the implied warranty of
15// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16// GNU General Public License for more details.
17//
18// You should have received a copy of the GNU General Public License
19// along with this program; if not, write to the Free Software
20// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21//
22// For the avoidance of doubt, and except that if any non-GPL license
23// choice is available it will apply instead, Sun elects to use only
24// the General Public License version 2 (GPLv2) at this time for any
25// software where a choice of GPL license versions is made
26// available with the language indicating that GPLv2 or any later version
27// may be used, or where a choice of which version of the GPL is applied is
28// otherwise unspecified.
29//
30// Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
31// CA 95054 USA or visit www.sun.com if you need additional information or
32// have any questions.
33//
34// ========== Copyright Header End ============================================
35module ccx_trep (
36 cpu_rep_out,
37 cpu_rep_in);
38
39output [191:0] cpu_rep_out;
40
41input [191:0] cpu_rep_in;
42
43ccx_rep i0(
44 .rep_out(cpu_rep_out[11:0]),
45 .rep_in(cpu_rep_in[11:0]));
46
47ccx_rep i1(
48 .rep_out(cpu_rep_out[23:12]),
49 .rep_in(cpu_rep_in[23:12]));
50
51ccx_rep i2(
52 .rep_out(cpu_rep_out[35:24]),
53 .rep_in(cpu_rep_in[35:24]));
54
55ccx_rep i3(
56 .rep_out(cpu_rep_out[47:36]),
57 .rep_in(cpu_rep_in[47:36]));
58
59ccx_rep i4(
60 .rep_out(cpu_rep_out[59:48]),
61 .rep_in(cpu_rep_in[59:48]));
62
63ccx_rep i5(
64 .rep_out(cpu_rep_out[71:60]),
65 .rep_in(cpu_rep_in[71:60]));
66
67ccx_rep i6(
68 .rep_out(cpu_rep_out[83:72]),
69 .rep_in(cpu_rep_in[83:72]));
70
71ccx_rep i7(
72 .rep_out(cpu_rep_out[95:84]),
73 .rep_in(cpu_rep_in[95:84]));
74
75ccx_rep i8(
76 .rep_out(cpu_rep_out[107:96]),
77 .rep_in(cpu_rep_in[107:96]));
78
79ccx_rep i9(
80 .rep_out(cpu_rep_out[119:108]),
81 .rep_in(cpu_rep_in[119:108]));
82
83ccx_rep i10(
84 .rep_out(cpu_rep_out[131:120]),
85 .rep_in(cpu_rep_in[131:120]));
86
87ccx_rep i11(
88 .rep_out(cpu_rep_out[143:132]),
89 .rep_in(cpu_rep_in[143:132]));
90
91ccx_rep i12(
92 .rep_out(cpu_rep_out[155:144]),
93 .rep_in(cpu_rep_in[155:144]));
94
95ccx_rep i13(
96 .rep_out(cpu_rep_out[167:156]),
97 .rep_in(cpu_rep_in[167:156]));
98
99ccx_rep i14(
100 .rep_out(cpu_rep_out[179:168]),
101 .rep_in(cpu_rep_in[179:168]));
102
103ccx_rep i15(
104 .rep_out(cpu_rep_out[191:180]),
105 .rep_in(cpu_rep_in[191:180]));
106
107endmodule // ccx_trep
108
109