FreeCalypso > hg > freecalypso-schem2
view venus/src/periph/transistor_ext_bias.v @ 95:cc8fd0dbd2cf
D404 SS34: fully specify part (sourced from Digi-Key)
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 11 Jan 2022 19:38:57 +0000 |
parents | 4a7db02ddd3e |
children |
line wrap: on
line source
/* transistor with external bias resistors */ module transistor_ext_bias (E, B, C); inout E, B, C; wire int_base; transistor_slot Q (.E(E), .B(int_base), .C(C)); resistor Rbase (B, int_base); resistor Rbe (int_base, E); endmodule