enum LogicOp;
| Value | Description |
|---|---|
| LOGICOP_DISABLE | Disables logical operations. |
LOGICOP_NOOP |
Does nothing. |
LOGICOP_CLEAR |
The base address is 0x8000. |
LOGICOP_SET |
The base address is 0xff. |
LOGICOP_COPY |
This is (source). |
| LOGICOP_INV_COPY | This is (~source). |
| LOGICOP_INV | This is (~target). |
LOGICOP_AND |
This is (source & target). |
LOGICOP_NAND |
This is ~(source & target). |
LOGICOP_OR |
This is (source | target). |
LOGICOP_NOR |
This is ~(source | target). |
LOGICOP_XOR |
This is (source ^ target). |
LOGICOP_EQUIV |
This is ~(source ^ target). |
| LOGICOP_REV_AND | This is (source & ~target). |
| LOGICOP_INV_AND | This is (~source & target). |
| LOGICOP_REV_OR | This is (source | ~target). |
| LOGICOP_INV_OR | This is (~source | target). |
| LOGICOP_MAX | Total number of enumerators. |
Specifies the calculation method for logical calculations.
CONFIDENTIAL