mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-06 03:50:02 +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;
|
|
} |