[WXOR_DW] Double word exclusive-OR operation
Description
This instruction generates double word logic exclusive-OR operations at the input values. All input value bits of the same significance are logically linked by exclusive-OR; the result is written to the corresponding output value bit. The bit is 0 if all input bits of the same significance have the same value. Otherwise, the bit is 1.
The number of IN input parameters can be changed.
Example (two inputs)
IN1 | 2# 1 1 1 1_0 0 0 0_1 1 1 1_1 1 0 1_0 0 0 0_0 0 0 0_0 0 0 0_0 0 0 0 |
IN2 | 2# 1 1 1 1_0 0 0 0_0 0 1 1_0 0 1 1_0 0 0 0_0 0 0 0_0 0 0 0_0 0 0 0 |
OUT | 2# 0 0 0 0_0 0 0 0_1 1 0 0_1 1 1 0_0 0 0 0_0 0 0 0_0 0 0 0_0 0 0 0 |
Parameters
Parameters | Declaration | Data type | Description | Default |
|---|---|---|---|---|
IN1 | Input | DWORD | Input value 1 | 16#0 |
INn | Input | DWORD | Input value "n" | 16#0 |
OUT | Output | DWORD | Output value | 16#00000000 |