FreeCalypso > hg > freecalypso-schem2
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/venus/src/usb/regulator_with_caps.v Sat Nov 20 19:44:59 2021 +0000 @@ -0,0 +1,15 @@ +module regulator_with_caps (GND, IN, OUT); + +input GND, IN; +output OUT; + +regulator_ic reg (.IN(IN), + .OUT(OUT), + .GND(GND), + .EN(IN) + ); + +capacitor input_cap (IN, GND); +capacitor output_cap (OUT, GND); + +endmodule