: Public <<enumeration>> Enumeration
Created: 28/05/2013 11:33:00
Modified: 28/05/2013 11:33:49
Project:
Advanced:
Define the different logical operations.<br/>
Attribute
Public
  and
Details:
Notes: A logical AND operation. True when all input are true.<br/>
Public
  or
Details:
Notes: A logical OR operation. True when one or more input are true.<br/>
Public
  nor
Details:
Notes: A logical NOR operation. False when one or more input are true.<br/>
Public
  nand
Details:
Notes: A logical NAND operation. False when all input are true.<br/>
Public
  not
Details:
Notes: A logical NOT operation. Only one input and true input will give false out and false in will give true out. An inverter.<br/>
Public
  xnor
Details:
Notes: A logical XNOR operation. The function is the inverse of the exclusive OR (XOR) gate. All input false or true will give true. Otherwise false.<br/>
Public
  xor
Details:
Notes: A logical XOR operation.  All input false or true will give false. Otherwise true.<br/>