comparison lunalcd1/src/regulator.v @ 5:839e9b527e69

lunalcd1 board project started
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 22 Mar 2020 03:19:38 +0000
parents
children
comparison
equal deleted inserted replaced
4:070b11b83958 5:839e9b527e69
1 module regulator (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