comparison fc-uja/schem+bom/vsrc/regulator_ic.v @ 0:0f9bdd60ce50

fc-small-hw separated from old freecalypso-schem repo
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 21 Oct 2019 00:53:38 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:0f9bdd60ce50
1 module regulator_ic (IN, OUT, GND, EN);
2
3 input IN, GND, EN;
4 output OUT;
5
6 pkg_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