comparison duart28c/src/vsrc/regulator_ic.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_ic (IN, OUT, GND, EN);
2
3 input IN, GND, EN;
4 output OUT;
5
6 pkg_5pin pkg ( .pin_1(IN),
7 .pin_2(GND),
8 .pin_3(EN),
9 .pin_4(), /* no connect */
10 .pin_5(OUT)
11 );
12
13 endmodule