FreeCalypso > hg > fc-small-hw
view mmtb1/schem+bom/vsrc/led_circuit.v @ 39:e0b83c75df08
duart28/src/MCL: value attribute was wrong on the tantalum cap
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 24 Jul 2020 20:20:55 +0000 |
parents | 0f9bdd60ce50 |
children |
line wrap: on
line source
/* * This module captures the circuit for showing the state of a digital signal * on a LED without loading that digital signal by driving the LED from VBAT * and using a MOSFET to control it. */ module led_circuit (GND, VBAT, Signal); input GND, VBAT, Signal; wire R_to_LED, LED_to_Q; resistor R (VBAT, R_to_LED); diode led (.A(R_to_LED), .C(LED_to_Q)); mosfet Q (.G(Signal), .S(GND), .D(LED_to_Q)); endmodule