comparison venus/src/periph/charging_led.v @ 34:dfa0d08d8f2b

charging LED circuit captured
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 22 Nov 2021 03:25:55 +0000
parents
children
comparison
equal deleted inserted replaced
33:1d2b57d4f1c9 34:dfa0d08d8f2b
1 module charging_led (VCHG, LEDC);
2
3 input VCHG, LEDC;
4
5 wire mid;
6
7 resistor R (VCHG, mid);
8
9 basic_LED led (.A(mid), .C(LEDC));
10
11 endmodule