summaryrefslogtreecommitdiffstatshomepage
path: root/nl_examples/todo.c
Commit message (Collapse)AuthorAgeFilesLines
* Introduced user definable truth tables: couriersud2015-05-271-23/+6
| | | | | | | | | | | | | | NETLIST_START(lib) TRUTHTABLE_START(TTL_7400A_NAND, 2, 1, 0, "+A,B") TT_HEAD(" A , B | Q ") TT_LINE(" 0 , X | 1 |22") TT_LINE(" X , 0 | 1 |22") TT_LINE(" 1 , 1 | 0 |15") TRUTHTABLE_END() NETLIST_END() This enables the addition of devices without changing the netlist source code and allows the creation of libraries. Used pong.c as a proof of concept for the time being. [Couriersud]
* Moved all files in src/emu/netlist starting with p into plib folder. couriersud2015-05-271-1/+55
| | | | | This is a first step to ease synchronisation with a stand alone, e.g. outside mame, netlist implementation. More signed/unsigned cleanups and started work on generic truthtable devices. (nw)
* Commit current state of netlist examples. Later, these are intended as a ↵ Couriersud2014-02-091-17/+0
| | | | basis for regression tests.
* Major renaming of netlist device macros, like Couriersud2014-01-191-32/+32
| | | | | | | NETDEV_ALIAS ==> ALIAS NETDEV_R ==> RES NETDEV_C ==> CAP
* Quite a number of simplifications for netlist. Also tested some parallel ↵ Couriersud2014-01-101-0/+118
processing using OpenMP (disabled). No wn