| 109 | |
| 110 | /* or_1 : TWO * TWO |- TWO */ |
| 111 | bool simplicity_or_1(frameItem* dst, frameItem src, const txEnv* env) { |
| 112 | (void) env; /* env is unused. */ |
| 113 | bool x = readBit(&src); |
| 114 | bool y = readBit(&src); |
| 115 | writeBit(dst, x || y); |
| 116 | return true; |
| 117 | } |
| 118 | |
| 119 | #define OR_(bits) \ |
| 120 | /* or_n : TWO^n * TWO^n |- TWO^n */ \ |