comparison venus/src/periph/MAX1916.v @ 46:c247abb89302

MAX1916.v and lcd_module.v from lunalcd2
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 27 Nov 2021 01:43:32 +0000
parents
children
comparison
equal deleted inserted replaced
45:4c4eeacce681 46:c247abb89302
1 module MAX1916 (GND, EN, SET, LEDK);
2
3 input GND, EN, SET;
4 output [1:3] LEDK;
5
6 /* instantiate the package; the mapping of signals to pins is defined here */
7
8 pkg_SOT23_6 pkg (.pin_1(EN),
9 .pin_2(GND),
10 .pin_3(SET),
11 .pin_4(LEDK[3]),
12 .pin_5(LEDK[2]),
13 .pin_6(LEDK[1])
14 );
15
16 endmodule