FreeCalypso > hg > fc-small-hw
view lunalcd2/src/vsrc/MAX1916.v @ 81:6feb6db2c0bf
sim-fpc-pasv MCL: FPC connector footprint
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 25 Oct 2022 05:13:55 +0000 |
parents | d5d14b426faa |
children |
line wrap: on
line source
module MAX1916 (GND, EN, SET, LEDK); input GND, EN, SET; output [1:3] LEDK; /* instantiate the package; the mapping of signals to pins is defined here */ pkg_SOT23_6 pkg (.pin_1(EN), .pin_2(GND), .pin_3(SET), .pin_4(LEDK[3]), .pin_5(LEDK[2]), .pin_6(LEDK[1]) ); endmodule