comparison 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
comparison
equal deleted inserted replaced
22:22ac331aa0f8 23:9f70dc110ad7
1 module regulator_ic (IN, OUT, GND, EN);
2
3 input IN, GND, EN;
4 output OUT;
5
6 pkg_IC_5pin pkg (.pin_1(IN),
7 .pin_2(GND),
8 .pin_3(EN),
9 .pin_4(), /* no connect */
10 .pin_5(OUT)
11 );
12
13 endmodule