view venus/src/periph/inv_buffer_74LVC1G04.v @ 80:ebdbf6e08d2b

charging LED series resistor nailed down
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 05 Dec 2021 04:27:10 +0000
parents 3d5c40988a6b
children
line wrap: on
line source

module inv_buffer_74LVC1G04 (GND, Vcc, A, Y);

input GND, Vcc;
input A;
output Y;

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

pkg_XSON6 pkg  (.pin_1(),	/* no connect */
		.pin_2(A),
		.pin_3(GND),
		.pin_4(Y),
		.pin_5(),	/* no connect */
		.pin_6(Vcc)
	);

endmodule