mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
3 lines
No EOL
117 B
Text
3 lines
No EOL
117 B
Text
macro conditionalAssign(dest, cond, trueVal, falseVal) {
|
|
dest = zext(cond) * trueVal | zext(!cond) * falseVal;
|
|
} |