I/O Input Functions
I/O input functions evaluate logic using the values of I/O as inputs.
Input Function |
Description |
|---|---|
Evaluates to TRUE when the specified I/O input or output bit is 1 and FALSE otherwise.
Parameters are specified with the IOBit struct. |
|
Evaluates to TRUE when the specified I/O input or output bit is 0 and FALSE otherwise.
Parameters are specified with the NotIOBit struct. |
|
Evaluates to TRUE when either of the two specified I/O input or output bits is 1, and FALSE otherwise.
Parameters are specified with the OrIOBit struct. |
|
Evaluates to TRUE when both of the two specified I/O input or output bits are 1, and FALSE otherwise.
Parameters are specified with the AndIOBit struct. |
|
Evaluates to TRUE when only one of the two specified I/O input or output bits is 1, and FALSE otherwise.
Parameters are specified with the XorIOBit struct. |
|
Evaluates to FALSE when both of the two specified I/O input or output bits are 1, and TRUE otherwise.
Parameters are specified with the NandIOBit struct. |
|
Evaluates to FALSE when either of the two specified I/O input or output bits is 1, and TRUE otherwise.
Parameters are specified with the NorIOBit struct. |
|
Evaluates to FALSE when only one of the two specified I/O input or output bits is 1, and TRUE otherwise.
Parameters are specified with the XnorIOBit struct. |







