summaryrefslogtreecommitdiffstatshomepage
path: root/nl_examples/rc.c
diff options
context:
space:
mode:
Diffstat (limited to 'nl_examples/rc.c')
-rw-r--r--nl_examples/rc.c31
1 files changed, 0 insertions, 31 deletions
diff --git a/nl_examples/rc.c b/nl_examples/rc.c
deleted file mode 100644
index 1850da313da..00000000000
--- a/nl_examples/rc.c
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * cdelay.c
- *
- */
-
-#include "netlist/devices/net_lib.h"
-
-NETLIST_START(rc)
-
- /*
- * delay circuit
- *
- */
-
- /* Standard stuff */
-
- SOLVER(Solver, 48000)
- PARAM(Solver.ACCURACY, 1e-6)
- CLOCK(clk, 20000)
-
- CAP(C1, 0.022e-6)
- RES(R1, 10000)
- RES(R2, 20000)
-
- NET_C(clk, R2.1)
- NET_C(R2.2, R1.1, C1.1)
- NET_C(C1.2, R1.2, GND)
-
- LOG(tt, C1.1)
-
-NETLIST_END()