mirror of
https://github.com/icicle-emu/icicle-python
synced 2026-06-21 13:53:41 +00:00
3 lines
119 B
Plaintext
3 lines
119 B
Plaintext
macro conditionalAssign(dest, cond, trueVal, falseVal) {
|
|
dest = zext(cond) * trueVal | zext(!cond) * falseVal;
|
|
} |