// File Name: unsignedComp.v
// 3-bit unigned comparator
module unsignedComp(
	input [2:0] X, Y,
	output XeqY, XgtY, XltY
	);

endmodule// unsignedComp