summaryrefslogtreecommitdiffstatshomepage
path: root/nl_examples/cdelay.c
Commit message (Collapse)AuthorAgeFilesLines
* netlist: move nl_examples to src/lib/netlist/examples. (nw) couriersud2019-11-251-53/+0
| | | One folder less in the top-level.
* Rename misleading solver parameters. (nw) couriersud2017-01-081-1/+1
|
* Netlist improvements: couriersud2016-07-011-4/+13
| | | | | | | | | | | | | | | | | | | - nltool now accepts -Ddefine=value to pass on to netlists - improved option handling and added "dummy" options to add grouping and examples in help output. - improved --cmd=listdevices output - Fix dynamic timestepping. This will work with breakout using real capacitor modelling instead of delay devices. Really slow, but very useful to calibrate timings. - Fix an awful bug in timing for delay devices. - Switched to clang 3.8 and made code compile with -Weverything -Werror -Wno-old-style-cast -Wno-padded -Wno-weak-vtables -Wno-missing-variable-declarations -Wno-conversion -Wno-c++98-compat -Wno-float-equal -Wno-cast-align -Wno-global-constructors -Wno-c++98-compat-pedantic -Wno-exit-time-destructors -Wno-format-nonliteral -Wno-weak-template-vtables This was a helpful exercise since it brought forward some serious issues with implicit constructors. [Couriersud]
* - More code cleanup. couriersud2016-06-071-0/+11
| | | | | | | | | | | | | | - Dead code removal and minor refactoring. - Simplify. Align naming with stl. Fix somed pedantic warnings. - More STL compatability. - Remove ATTR_HOT and ATTR_COLD. Refactored netlist_time. - Fix long standing workaround which would ignore policy of change-only" propagation. - Rewrote for loops to use auto : semantics. - Truthtable cleanup. (nw) - Get rid of nl_math. Remove nl_util.h and moved contents to plib/putil.h. - Fix standalone build. Refactor ptypes.h. [Couriersud]
* Add license to files that were not part of build or are containing data to ↵ Miodrag Milanovic2016-03-051-0/+2
| | | | build sources for cpu emulation (nw)
* Preliminary support for LTE dynamic time-stepping based on Local truncation ↵ Couriersud2014-05-151-0/+31
error. This enables the possibility to connect a capacitor between ground and a TTL output and get a e.g. 100 ns delay with a 1nF capacitor. Added an example circuit (cdelay.c) Changed the log device to support nano-second granularity. LTE is not yet enabled due to it's ugly test-state.