summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/netlist/plib/pfunction.h
Commit message (Collapse)AuthorAgeFilesLines
* netlist: MB3614 again, function controlled VARCLOCK and other couriersud2019-04-071-0/+1
| | | | | | | | | | | improvements. - fix MB3614 parameter - Added VARCLOCK which derives step size from function - optimized function handling in CS and VS - fixed a bug in ppreprocessor - add trunc to pfunction - added opamp_amplification_curve to derive characteristic amplification curve
* (nw) Clean up the mess on master Vas Crabb2019-03-261-2/+2
| | | | | | | | | | | | | This effectively reverts b380514764cf857469bae61c11143a19f79a74c5 and c24473ddff715ecec2e258a6eb38960cf8c8e98e, restoring the state at 598cd5227223c3b04ca31f0dbc1981256d9ea3ff. Before pushing, please check that what you're about to push is sane. Check your local commit log and ensure there isn't anything out-of-place before pushing to mainline. When things like this happen, it wastes everyone's time. I really don't need this in a week when real work™ is busting my balls and I'm behind where I want to be with preparing for MAME release.
* Revert "conflict resolution (nw)" andreasnaive2019-03-251-2/+2
| | | | | This reverts commit c24473ddff715ecec2e258a6eb38960cf8c8e98e, reversing changes made to 009cba4fb8102102168ef32870892438327f3705.
* netlist: Refactoring after adding clang-tidy support to netlist makefile couriersud2019-02-071-2/+2
| | | | | | | - convert macros to c++ code. - order of device creation should not depend on std lib. - some state saving cleanup. - added support for clang-tidy to makefile. - modifications triggered by clang-tidy-9.
* Fix state saving for pfunction lfsr. (nw) couriersud2017-05-281-0/+17
|
* srcclean (nw) Vas Crabb2017-05-281-4/+4
|
* Fix issues identified by Vas and LordKale4: couriersud2017-05-271-0/+12
| | | | | | - made local netlists in Cheeky Mouse static - replace stdlib rand by 16 bit galois lfsr (nw)
* Add rand() function to pfunction expression parser. Use this to simulate couriersud2017-05-271-0/+1
| | | E-B noise in Cheeky Mouse and fix the "cheese" choose. [Couriersud]
* More cppcheck fixes. (nw) Couriersud2017-03-051-4/+4
|
* srcclean (nw) Vas Crabb2017-02-191-1/+1
|
* Reorder include order to comply with best practices. (nw) couriersud2017-02-101-2/+2
|
* Cleanup of includes. (nw) couriersud2017-01-271-1/+0
|
* Added infix notation parsing to the function parser. (nw) couriersud2017-01-251-2/+20
|
* Netlist: couriersud2017-01-171-0/+70
- refactored reverse polish notation evaluator into own source files. - added function parameter to current and voltage sources VS and CS. You can now use those to e.g. produce a sine wave. - Changed code to allow devices to optionally be treated as dynamic or timestepping devices. [Couriersud]