comparison fc-uja/schem+bom/vsrc/regulator_with_caps.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_with_caps (GND, IN, OUT);
2
3 input GND, IN;
4 output OUT;
5
6 regulator_ic reg (.IN(IN),
7 .OUT(OUT),
8 .GND(GND),
9 .EN(IN)
10 );
11
12 capacitor input_cap (IN, GND);
13 capacitor output_cap (OUT, GND);
14
15 endmodule