diff boards/mv-sniffer/src/ic_74LVC4T3144.v @ 1:55e5f926fb5a

beginning of mv-sniffer adapter board design
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 28 Jul 2023 20:01:06 +0000
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/boards/mv-sniffer/src/ic_74LVC4T3144.v	Fri Jul 28 20:01:06 2023 +0000
@@ -0,0 +1,27 @@
+module ic_74LVC4T3144 (GND, VccA, VccB, nOE, A1, A2, A3, YA4,
+			YB1, YB2, YB3, B4);
+
+input GND, VccA, VccB;
+input nOE;
+input A1, A2, A3, B4;
+output YB1, YB2, YB3, YA4;
+
+/* instantiate the package; the mapping of signals to pins is defined here */
+
+pkg_TSSOP14 pkg (.pin_1(VccA),
+		 .pin_2(A1),
+		 .pin_3(A2),
+		 .pin_4(A3),
+		 .pin_5(YA4),
+		 .pin_6(GND),
+		 .pin_7(GND),
+		 .pin_8(B4),
+		 .pin_9(),	/* no connect */
+		 .pin_10(YB3),
+		 .pin_11(YB2),
+		 .pin_12(YB1),
+		 .pin_13(VccB),
+		 .pin_14(nOE)
+	);
+
+endmodule