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

Subversion Repositories openfire2

[/] [openfire2/] [trunk/] [rtl/] [prom_reader_my_lut2.v] - Rev 6

Compare with Previous | Blame | View Log

//	MODULE  : my_LUT2.v
//	AUTHOR  : Stephan Neuhold
//	VERSION : v1.00
//
//	REVISION HISTORY:
//	-----------------
//	No revisions
//
//	FUNCTION DESCRIPTION:
//	---------------------
//	This module instantiates a simple LUT2
//	primitive and initialises the contents
//	to 9 creating an XOR function.
 
`timescale 1 ns / 1 ns
 
module my_LUT2(	I0,
						I1,
						O);
 
	input		I0;
	input		I1;
	output	O;
 
LUT2	#(4'h9)	my_LUT2_inst(
	.I0(I0),
	.I1(I1),
	.O(O)
	);
 
endmodule
 

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.