blob: 14c729e54f1465ee1e8430039bda752499f97ac4 [file] [log] [blame] [edit]
// ========== Copyright Header Begin ==========================================
//
// OpenSPARC T1 Processor File: scdata_rep.v
// Copyright (c) 2006 Sun Microsystems, Inc. All Rights Reserved.
// DO NOT ALTER OR REMOVE COPYRIGHT NOTICES.
//
// The above named program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public
// License version 2 as published by the Free Software Foundation.
//
// The above named program is distributed in the hope that it will be
// useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// General Public License for more details.
//
// You should have received a copy of the GNU General Public
// License along with this work; if not, write to the Free Software
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
//
// ========== Copyright Header End ============================================
module scdata_rep(/*AUTOARG*/
// Outputs
sctag_scdata_col_offset_c2_buf, sctag_scdata_fb_hit_c3_buf,
sctag_scdata_fbrd_c3_buf, sctag_scdata_rd_wr_c2_buf,
sctag_scdata_set_c2_buf, sctag_scdata_stdecc_c2_buf,
sctag_scdata_way_sel_c2_buf, sctag_scdata_word_en_c2_buf,
scdata_sctag_decc_c6,
// Inputs
sctag_scdata_col_offset_c2, sctag_scdata_fb_hit_c3,
sctag_scdata_fbrd_c3, sctag_scdata_rd_wr_c2, sctag_scdata_set_c2,
sctag_scdata_stdecc_c2, sctag_scdata_way_sel_c2,
sctag_scdata_word_en_c2, scdata_sctag_decc_c6_ctr
);
input [3:0] sctag_scdata_col_offset_c2;
input sctag_scdata_fb_hit_c3;
input sctag_scdata_fbrd_c3;
input sctag_scdata_rd_wr_c2;
input [9:0] sctag_scdata_set_c2;
input [77:0] sctag_scdata_stdecc_c2;
input [11:0] sctag_scdata_way_sel_c2;
input [15:0] sctag_scdata_word_en_c2;
input [155:0] scdata_sctag_decc_c6_ctr;
output [3:0] sctag_scdata_col_offset_c2_buf;
output sctag_scdata_fb_hit_c3_buf;
output sctag_scdata_fbrd_c3_buf;
output sctag_scdata_rd_wr_c2_buf;
output [9:0] sctag_scdata_set_c2_buf;
output [77:0] sctag_scdata_stdecc_c2_buf;
output [11:0] sctag_scdata_way_sel_c2_buf;
output [15:0] sctag_scdata_word_en_c2_buf;
output [155:0] scdata_sctag_decc_c6;
assign sctag_scdata_col_offset_c2_buf = sctag_scdata_col_offset_c2;
assign sctag_scdata_fb_hit_c3_buf = sctag_scdata_fb_hit_c3;
assign sctag_scdata_fbrd_c3_buf = sctag_scdata_fbrd_c3;
assign sctag_scdata_rd_wr_c2_buf = sctag_scdata_rd_wr_c2;
assign sctag_scdata_set_c2_buf = sctag_scdata_set_c2;
assign sctag_scdata_stdecc_c2_buf = sctag_scdata_stdecc_c2;
assign sctag_scdata_way_sel_c2_buf = sctag_scdata_way_sel_c2;
assign sctag_scdata_word_en_c2_buf = sctag_scdata_word_en_c2;
assign scdata_sctag_decc_c6 = scdata_sctag_decc_c6_ctr;
endmodule // scdata_rep