summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/netlist/examples/rl.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/netlist/examples/rl.c')
-rw-r--r--src/lib/netlist/examples/rl.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/src/lib/netlist/examples/rl.c b/src/lib/netlist/examples/rl.c
index 2848348c440..b9f4e4e64c0 100644
--- a/src/lib/netlist/examples/rl.c
+++ b/src/lib/netlist/examples/rl.c
@@ -7,26 +7,26 @@
NETLIST_START(lr)
- /*
- * delay circuit
- *
- */
+ /*
+ * delay circuit
+ *
+ */
- /* Standard stuff */
+ /* Standard stuff */
- SOLVER(Solver, 48000)
- PARAM(Solver.ACCURACY, 1e-6)
- CLOCK(clk, 50)
+ SOLVER(Solver, 48000)
+ PARAM(Solver.ACCURACY, 1e-6)
+ CLOCK(clk, 50)
PARAM(Solver.METHOD, "MAT_CR")
- IND(L1, 10)
- RES(R1, 10000)
-
- NET_C(clk, L1.1)
- NET_C(L1.2, R1.1)
- NET_C(R1.2, GND)
+ IND(L1, 10)
+ RES(R1, 10000)
- //LOG(log_1, R1.1)
- //LOG(log_2, clk)
+ NET_C(clk, L1.1)
+ NET_C(L1.2, R1.1)
+ NET_C(R1.2, GND)
+
+ //LOG(log_1, R1.1)
+ //LOG(log_2, clk)
NETLIST_END()