FreeCalypso > hg > fc-small-hw
annotate duart28c/src/vsrc/regulator_with_caps.v @ 52:fb657e1107e3
duart28c/src/MCL: update for Digi-Key parts actually on order
| author | Mychaela Falconia <falcon@freecalypso.org> | 
|---|---|
| date | Sun, 02 Aug 2020 20:51:27 +0000 | 
| parents | d80978bd645e | 
| children | 
| rev | line source | 
|---|---|
| 46 
d80978bd645e
duart28c: started with a copy from duart28
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 1 module regulator_with_caps (GND, IN, OUT); | 
| 
d80978bd645e
duart28c: started with a copy from duart28
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 2 | 
| 
d80978bd645e
duart28c: started with a copy from duart28
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 3 input GND, IN; | 
| 
d80978bd645e
duart28c: started with a copy from duart28
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 4 output OUT; | 
| 
d80978bd645e
duart28c: started with a copy from duart28
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 5 | 
| 
d80978bd645e
duart28c: started with a copy from duart28
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 6 regulator_ic reg (.IN(IN), | 
| 
d80978bd645e
duart28c: started with a copy from duart28
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 7 .OUT(OUT), | 
| 
d80978bd645e
duart28c: started with a copy from duart28
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 8 .GND(GND), | 
| 
d80978bd645e
duart28c: started with a copy from duart28
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 9 .EN(IN) | 
| 
d80978bd645e
duart28c: started with a copy from duart28
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 10 ); | 
| 
d80978bd645e
duart28c: started with a copy from duart28
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 11 | 
| 
d80978bd645e
duart28c: started with a copy from duart28
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 12 capacitor input_cap (IN, GND); | 
| 
d80978bd645e
duart28c: started with a copy from duart28
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 13 capacitor output_cap (OUT, GND); | 
| 
d80978bd645e
duart28c: started with a copy from duart28
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 14 | 
| 
d80978bd645e
duart28c: started with a copy from duart28
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 15 endmodule | 
