comparison duart28c/src/vsrc/regulator_with_caps.v @ 46:d80978bd645e

duart28c: started with a copy from duart28
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 29 Jul 2020 07:08:28 +0000
parents
children
comparison
equal deleted inserted replaced
45:2f8a4e3c48cb 46:d80978bd645e
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