view venus/src/usb/eeprom_93Cx6_16bit.v @ 94:4502eec1e805

D405: use Nexperia part sourced from Digi-Key direct The previously selected part was from a Digi-Key marketplace vendor, and they seem to not actually have that part, as the order has been in limbo for over a month - so I put in the time and effort to look around, and found a readily available equivalent part from Nexperia.
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 11 Jan 2022 19:11:22 +0000
parents 9f70dc110ad7
children
line wrap: on
line source

module eeprom_93Cx6_16bit (GND, VCC, CS, SK, DIN, DOUT);

input GND, VCC;
input CS, SK, DIN;
output DOUT;

/* instantiate the package; the mapping of signals to pins is defined here */

pkg_IC_8pin pkg (.pin_1(CS),
		 .pin_2(SK),
		 .pin_3(DIN),
		 .pin_4(DOUT),
		 .pin_5(GND),
		 .pin_6(VCC),	/* ORG input on some 93Cx6 variants */
		 .pin_7(),	/* no connect */
		 .pin_8(VCC)
	);

endmodule