OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [branches/] [mp3_stable/] [or1200/] [rtl/] [verilog/] [operandmuxes.v] - Rev 161

Go to most recent revision | Compare with Previous | Blame | View Log

//////////////////////////////////////////////////////////////////////
////                                                              ////
////  OR1200's register file read operands mux                    ////
////                                                              ////
////  This file is part of the OpenRISC 1200 project              ////
////  http://www.opencores.org/cores/or1k/                        ////
////                                                              ////
////  Description                                                 ////
////  Mux for two register file read operands.                    ////
////                                                              ////
////  To Do:                                                      ////
////   - make it smaller and faster                               ////
////                                                              ////
////  Author(s):                                                  ////
////      - Damjan Lampret, lampret@opencores.org                 ////
////                                                              ////
//////////////////////////////////////////////////////////////////////
////                                                              ////
//// Copyright (C) 2000 Authors and OPENCORES.ORG                 ////
////                                                              ////
//// This source file may be used and distributed without         ////
//// restriction provided that this copyright statement is not    ////
//// removed from the file and that any derivative work contains  ////
//// the original copyright notice and the associated disclaimer. ////
////                                                              ////
//// This source file is free software; you can redistribute it   ////
//// and/or modify it under the terms of the GNU Lesser General   ////
//// Public License as published by the Free Software Foundation; ////
//// either version 2.1 of the License, or (at your option) any   ////
//// later version.                                               ////
////                                                              ////
//// This source 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 Lesser General Public License for more ////
//// details.                                                     ////
////                                                              ////
//// You should have received a copy of the GNU Lesser General    ////
//// Public License along with this source; if not, download it   ////
//// from http://www.opencores.org/lgpl.shtml                     ////
////                                                              ////
//////////////////////////////////////////////////////////////////////
//
// CVS Revision History
//
// $Log: not supported by cvs2svn $
//
 
`include "alu_defs.h"
`include "general.h"
 
module operandmuxes(clk, rst, pipeline_freeze, rf_dataa, rf_datab, ex_forw, wb_forw, simm, sel_a, sel_b, operand_a, operand_b, muxed_b);
 
parameter width = `OPERAND_WIDTH;
 
input clk;
input rst;
input pipeline_freeze;
input [width-1:0] rf_dataa;
input [width-1:0] rf_datab;
input [width-1:0] ex_forw;
input [width-1:0] wb_forw;
input [width-1:0] simm;
input [`SEL_WIDTH-1:0] sel_a;
input [`SEL_WIDTH-1:0] sel_b;
 
output [width-1:0] operand_a;
output [width-1:0] operand_b;
output [width-1:0] muxed_b;
 
reg [width-1:0] operand_a;
reg [width-1:0] operand_b;
 
reg [width-1:0] muxed_a;
reg [width-1:0] muxed_b;
 
always @(posedge clk or posedge rst) begin
	if (rst)
		operand_a <= #1 32'd0;
	else if (!pipeline_freeze)
		operand_a <= #1 muxed_a;
end
 
always @(posedge clk or posedge rst) begin
	if (rst)
		operand_b <= #1 32'd0;
	else if (!pipeline_freeze)
		operand_b <= #1 muxed_b;
end
 
always @(ex_forw or wb_forw or rf_dataa or sel_a) begin
	casex (sel_a)	// synopsys full_case parallel_case infer_mux
		`SEL_EX_FORW:
			muxed_a <= #1 ex_forw;
		`SEL_WB_FORW:
			muxed_a <= #1 wb_forw;
		default:
			muxed_a <= #1 rf_dataa;
	endcase
end
 
always @(simm or ex_forw or wb_forw or rf_datab or sel_b) begin
	casex (sel_b)	// synopsys full_case parallel_case infer_mux
		`SEL_IMM:
			muxed_b <= #1 simm;
		`SEL_EX_FORW:
			muxed_b <= #1 ex_forw;
		`SEL_WB_FORW:
			muxed_b <= #1 wb_forw;
		default:
			muxed_b <= #1 rf_datab;
	endcase
end
 
endmodule
 

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.