summaryrefslogtreecommitdiffstatshomepage
path: root/nl_examples
diff options
context:
space:
mode:
author couriersud <couriersud@arcor.de>2015-08-04 21:55:52 +0200
committer couriersud <couriersud@arcor.de>2015-08-10 22:35:18 +0200
commit7b15a99c4b9ee44264a4cb9d719dc0ef3736ce85 (patch)
treebba87cd9c5012cb4871d1649ba7b4f6de0e023c3 /nl_examples
parentd6b1cf85c55592f2c1a276b9fd42dfbd639511aa (diff)
utf8 support for pstring. Opted for a scalable solution which should be
easily extensible to utf16 and utf32 as well. All position related operations now operate on char code positions instead of byte positions. [Couriersud]
Diffstat (limited to 'nl_examples')
-rw-r--r--nl_examples/congo_bongo.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/nl_examples/congo_bongo.c b/nl_examples/congo_bongo.c
index f3b701a8196..d57f2ae388b 100644
--- a/nl_examples/congo_bongo.c
+++ b/nl_examples/congo_bongo.c
@@ -1,3 +1,6 @@
+
+/* € */ // ABC
+
#include "netlist/devices/net_lib.h"
#include "netlist/devices/nld_system.h"
#include "netlist/analog/nld_bjt.h"
@@ -33,7 +36,7 @@ NETLIST_START(dummy)
// IGNORED O_AUDIO0: O_AUDIO0 64 0
// .END
- SOLVER(Solver, 24000)
+ /* €€ */ SOLVER(Solver, 24000)
PARAM(Solver.ACCURACY, 1e-8)
PARAM(Solver.NR_LOOPS, 150)
PARAM(Solver.SOR_FACTOR, 0.001)