mame/src
couriersud fb90cac2f2 netlist: Add comparison operators to pfunction.
Comparison operators evaluate either into 0.0 or 1.0. Thus they can be
used like "(a==1)*(b==2)" which will only result in 1.0 if a equal 1 and
b equal 1. From the yet to be released test code:

* PFUNCEXPECT("1==1", 1.0)
* PFUNCEXPECT("1 *0 == 2-1-1", 1.0)
* PFUNCEXPECT("0!=1", 1.0)
* PFUNCEXPECT("0<1",  1.0)
* PFUNCEXPECT("1>0",  1.0)
* PFUNCEXPECT("0<=1", 1.0)
* PFUNCEXPECT("1>=0", 1.0)
* PFUNCEXPECT("1<=1", 1.0)
* PFUNCEXPECT("1>=1", 1.0)
* PFUNCEXPECT("if(1>0, 2, 0)", 2.0)
* PFUNCEXPECT("if(0>1, 2, 3)", 3.0)
* PFUNCEXPECT("if(sin(1)>0, 2, 3)", 3.0) // fail
2020-07-02 21:29:25 +02:00
..
devices voodoo.cpp: Only flag texture controls as changed if they are actually changed. 2020-07-02 12:32:32 -06:00
emu Slotified Mac 128k/512k/512ke/Plus keyboard port. 2020-07-01 02:37:55 +10:00
frontend/mame (nw) get help from website instead of files that don't exist. 2020-06-24 13:42:42 +10:00
lib netlist: Add comparison operators to pfunction. 2020-07-02 21:29:25 +02:00
mame hp_ipc: added beeper (#6893) 2020-07-02 14:04:21 -04:00
osd windows: reduce minimum window height (nw) 2020-06-26 15:33:53 +02:00
tools MDOS disk format support 2020-07-03 00:16:35 +10:00
zexall finally retired the READ8/16/32/64 and WRITE8/16/32/64 macros (nw) 2020-06-18 20:13:33 +02:00