| 132 | |
| 133 | /* xor_1 : TWO * TWO |- TWO */ |
| 134 | bool simplicity_xor_1(frameItem* dst, frameItem src, const txEnv* env) { |
| 135 | (void) env; /* env is unused. */ |
| 136 | bool x = readBit(&src); |
| 137 | bool y = readBit(&src); |
| 138 | writeBit(dst, x ^ y); |
| 139 | return true; |
| 140 | } |
| 141 | |
| 142 | #define XOR_(bits) \ |
| 143 | /* xor_n : TWO^n * TWO^n |- TWO^n */ \ |