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

Subversion Repositories instruction_list_pipelined_processor_with_peripherals

[/] [instruction_list_pipelined_processor_with_peripherals/] [trunk/] [hdl/] [tcEnableAndType.v] - Rev 10

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

////////////////////////////////////////////////////////////////////////////////////////////////
////                                                              							////
////                                                              							////
////  	This file is part of the project                 									////
////	"instruction_list_pipelined_processor_with_peripherals"								////
////                                                              							////
////  http://opencores.org/project,instruction_list_pipelined_processor_with_peripherals	////
////                                                              							////
////                                                              							////
//// 				 Author:                                                  				////
////      			- Mahesh Sukhdeo Palve													////
////																						////
////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////
////																						////
//// 											                 							////
////                                                              							////
//// 					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                     		////
////                                                              							////
////////////////////////////////////////////////////////////////////////////////////////////////
 
`include "timescale.v"
`include "defines.v"
 
 
module tcEnableAndType (entypeEn, enIn, typeIn, tcAddr, enOut, typeOut);
 
	input entypeEn, enIn;
	input [`tcTypeLen-1:0] typeIn;	// could be `counterTypeLen
	input [`tcAddrLen-1:0] tcAddr;
 
	output wire [`tcNumbers-1:0] enOut;
	output wire [(`tcNumbers*`tcTypeLen)-1:0] typeOut;
 
	reg enables [`tcNumbers-1:0];
	reg [`tcTypeLen-1:0] types [`tcNumbers-1:0];
 
	always @ *
	begin
		if (entypeEn)
		begin
			enables[tcAddr] = enIn;
			types[tcAddr] = typeIn;
		end
	end
 
	// assign outputs . . .
	// can write generic???
 
	assign enOut[0]= enables[0];
	assign enOut[1]= enables[1];
	assign enOut[2]= enables[2];
	assign enOut[3]= enables[3];
	assign enOut[4]= enables[4];
	assign enOut[5]= enables[5];
	assign enOut[6]= enables[6];
	assign enOut[7]= enables[7];
 
	assign typeOut[`tcTypeLen-1:0] = types[0];
	assign typeOut[(`tcTypeLen*2)-1:`tcTypeLen] = types[1];
	assign typeOut[(`tcTypeLen*3)-1:(`tcTypeLen*2)] = types[2];
	assign typeOut[(`tcTypeLen*4)-1:(`tcTypeLen*3)] = types[3];
	assign typeOut[(`tcTypeLen*5)-1:(`tcTypeLen*4)] = types[4];
	assign typeOut[(`tcTypeLen*6)-1:(`tcTypeLen*5)] = types[5];
	assign typeOut[(`tcTypeLen*7)-1:(`tcTypeLen*6)] = types[6];
	assign typeOut[(`tcTypeLen*8)-1:(`tcTypeLen*7)] = types[7];
 
 
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.