Initial commit of OpenSPARC T2 design and verification files.
[OpenSPARC-T2-DV] / design / sys / iop / l2t / rtl / l2t_mrep16x8_dp.v
CommitLineData
86530b38
AT
1// ========== Copyright Header Begin ==========================================
2//
3// OpenSPARC T2 Processor File: l2t_mrep16x8_dp.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 l2t_mrep16x8_dp (
36 rep_out0,
37 rep_in0,
38 rep_out1,
39 rep_in1,
40 rep_out2,
41 rep_in2,
42 rep_out3,
43 rep_in3,
44 rep_out4,
45 rep_in4,
46 rep_out5,
47 rep_in5,
48 rep_out6,
49 rep_in6,
50 rep_out7,
51 rep_in7);
52
53
54output [15:0] rep_out0;
55input [15:0] rep_in0;
56output [15:0] rep_out1;
57input [15:0] rep_in1;
58output [15:0] rep_out2;
59input [15:0] rep_in2;
60output [15:0] rep_out3;
61input [15:0] rep_in3;
62output [15:0] rep_out4;
63input [15:0] rep_in4;
64output [15:0] rep_out5;
65input [15:0] rep_in5;
66output [15:0] rep_out6;
67input [15:0] rep_in6;
68output [15:0] rep_out7;
69input [15:0] rep_in7;
70
71
72l2t_mrep16x8_dp_buff_macro__dbuff_32x__stack_16r__width_16 manual_buff0
73 (
74 .din (rep_in0[15:0]),
75 .dout (rep_out0[15:0])
76 );
77l2t_mrep16x8_dp_buff_macro__dbuff_32x__stack_16r__width_16 manual_buff1
78 (
79 .din (rep_in1[15:0]),
80 .dout (rep_out1[15:0])
81 );
82l2t_mrep16x8_dp_buff_macro__dbuff_32x__stack_16r__width_16 manual_buff2
83 (
84 .din (rep_in2[15:0]),
85 .dout (rep_out2[15:0])
86 );
87l2t_mrep16x8_dp_buff_macro__dbuff_32x__stack_16r__width_16 manual_buff3
88 (
89 .din (rep_in3[15:0]),
90 .dout (rep_out3[15:0])
91 );
92l2t_mrep16x8_dp_buff_macro__dbuff_32x__stack_16r__width_16 manual_buff4
93 (
94 .din (rep_in4[15:0]),
95 .dout (rep_out4[15:0])
96 );
97l2t_mrep16x8_dp_buff_macro__dbuff_32x__stack_16r__width_16 manual_buff5
98 (
99 .din (rep_in5[15:0]),
100 .dout (rep_out5[15:0])
101 );
102l2t_mrep16x8_dp_buff_macro__dbuff_32x__stack_16r__width_16 manual_buff6
103 (
104 .din (rep_in6[15:0]),
105 .dout (rep_out6[15:0])
106 );
107l2t_mrep16x8_dp_buff_macro__dbuff_32x__stack_16r__width_16 manual_buff7
108 (
109 .din (rep_in7[15:0]),
110 .dout (rep_out7[15:0])
111 );
112
113endmodule
114
115
116//
117// buff macro
118//
119//
120
121
122
123
124
125module l2t_mrep16x8_dp_buff_macro__dbuff_32x__stack_16r__width_16 (
126 din,
127 dout);
128 input [15:0] din;
129 output [15:0] dout;
130
131
132
133
134
135
136buff #(16) d0_0 (
137.in(din[15:0]),
138.out(dout[15:0])
139);
140
141
142
143
144
145
146
147
148endmodule
149
150
151
152