view venus/src/periph/charging_led.v @ 47:9f5a3567d699

progress toward LCD integration
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 27 Nov 2021 02:09:46 +0000
parents dfa0d08d8f2b
children
line wrap: on
line source

module charging_led (VCHG, LEDC);

input VCHG, LEDC;

wire mid;

resistor R (VCHG, mid);

basic_LED led (.A(mid), .C(LEDC));

endmodule