Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Introduced user definable truth tables: | 2015-05-27 | 1 | -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. | 2015-05-27 | 1 | -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 ↵ | 2014-02-09 | 1 | -17/+0 | |
| | | | | basis for regression tests. | ||||
* | Major renaming of netlist device macros, like | 2014-01-19 | 1 | -32/+32 | |
| | | | | | | | NETDEV_ALIAS ==> ALIAS NETDEV_R ==> RES NETDEV_C ==> CAP | ||||
* | Quite a number of simplifications for netlist. Also tested some parallel ↵ | 2014-01-10 | 1 | -0/+118 | |
processing using OpenMP (disabled). No wn |