view duart28c/src/vsrc/eeprom_93Cx6_16bit.v @ 68:8bfa10553e36

lunalcd2/src/MCL: different part for two-post VBAT supply header The tin-plated part is currently out of stock at Digi-Key, but the better gold-plated part is in stock and still reasonably inexpensive.
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 26 Jun 2021 20:40:29 +0000
parents d80978bd645e
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_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