comparison venus/src/periph/transistor_ext_bias.v @ 63:4a7db02ddd3e

buzzer circuit implemented
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 01 Dec 2021 20:22:47 +0000
parents
children
comparison
equal deleted inserted replaced
62:a1b55af7f04d 63:4a7db02ddd3e
1 /* transistor with external bias resistors */
2
3 module transistor_ext_bias (E, B, C);
4
5 inout E, B, C;
6
7 wire int_base;
8
9 transistor_slot Q (.E(E), .B(int_base), .C(C));
10
11 resistor Rbase (B, int_base);
12 resistor Rbe (int_base, E);
13
14 endmodule