diff options
Diffstat (limited to 'nl_examples/bjt_eb_pnp.c')
-rw-r--r-- | nl_examples/bjt_eb_pnp.c | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/nl_examples/bjt_eb_pnp.c b/nl_examples/bjt_eb_pnp.c deleted file mode 100644 index 10169b6bd3f..00000000000 --- a/nl_examples/bjt_eb_pnp.c +++ /dev/null @@ -1,35 +0,0 @@ -// license:GPL-2.0+ -// copyright-holders:Couriersud -/* - * bjt.c - * - */ - - -#include "netlist/devices/net_lib.h" - -NETLIST_START(bjt) - /* Standard stuff */ - - CLOCK(clk, 1000) // 1000 Hz - SOLVER(Solver, 48000) - ANALOG_INPUT(V5, 5) - ANALOG_INPUT(V3, 3.5) - - /* PNP - example */ - - QBJT_EB(Q1, "BC556B") - RES(RB1, 1000) - RES(RC1, 1000) - - NET_C(RC1.1, GND) - NET_C(RC1.2, Q1.C) - NET_C(RB1.1, clk) - NET_C(RB1.2, Q1.B) - NET_C(Q1.E, V3) - - LOG(logA, clk) - LOG(logB, Q1.B) - LOG(logC, Q1.C) - -NETLIST_END() |