diff venus/src/usb/regulator_ic.v @ 23:9f70dc110ad7

venus/src/usb: building blocks from DUART28
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 20 Nov 2021 17:48:18 +0000
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/venus/src/usb/regulator_ic.v	Sat Nov 20 17:48:18 2021 +0000
@@ -0,0 +1,13 @@
+module regulator_ic (IN, OUT, GND, EN);
+
+input IN, GND, EN;
+output OUT;
+
+pkg_IC_5pin pkg (.pin_1(IN),
+		 .pin_2(GND),
+		 .pin_3(EN),
+		 .pin_4(),	/* no connect */
+		 .pin_5(OUT)
+	);
+
+endmodule