FreeCalypso > hg > fc-small-hw
view lunalcd2/src/vsrc/bl_current_sink.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 bl_current_sink (GND, Vio, BL_EN, LEDK); input GND, Vio, BL_EN; output [1:3] LEDK; wire SET; MAX1916 MAX1916 (.GND(GND), .EN(BL_EN), .SET(SET), .LEDK(LEDK) ); current_select cursel ( .Vio(Vio), .SET(SET) ); endmodule