view venus/src/periph/charging_led.v @ 83:c27854430cb3

add 3-pin header for possible external boot control
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 08 Dec 2021 05:32:47 +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