5 lines
171 B
Plaintext
5 lines
171 B
Plaintext
|
// One-bit window lookup table using one constraint
|
||
|
def main(bool selector, field[2] target) -> field {
|
||
|
field out = selector ? target[1] : target[0];
|
||
|
return out;
|
||
|
}
|