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/] [tcReset.v] - Rev 8

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

 
`include "timescale.v"
`include "defines.v"
 
 
module tcReset (tcResetEn, resetIn, tcAddr, resetOut);
 
	input tcResetEn, resetIn;
	input [`tcAddrLen-1:0] tcAddr;
 
	output [`tcNumbers-1:0] resetOut;
 
	reg [`tcNumbers-1:0] resets;
 
 
	always @ *
	begin
		if (tcResetEn)
		begin
			resets[tcAddr] = resetIn;
		end
	end
 
	assign resetOut = resets;
 
 
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.