comparison venus/src/usb/regulator_with_caps.v @ 24:4722b265cb8c

Venus src: USB domain captured
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 20 Nov 2021 19:44:59 +0000
parents
children
comparison
equal deleted inserted replaced
23:9f70dc110ad7 24:4722b265cb8c
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