mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
Let segmentop scripts follow natural parameter order
This commit is contained in:
parent
8253b21bab
commit
05f292a5e7
10 changed files with 15 additions and 15 deletions
|
@ -127,8 +127,8 @@ void EmulatePcodeOp::executeSegmentOp(void)
|
|||
uintb in1 = getVarnodeValue(currentOp->getIn(1));
|
||||
uintb in2 = getVarnodeValue(currentOp->getIn(2));
|
||||
vector<uintb> bindlist;
|
||||
bindlist.push_back(in2);
|
||||
bindlist.push_back(in1);
|
||||
bindlist.push_back(in2);
|
||||
uintb res = segdef->execute(bindlist);
|
||||
setVarnodeValue(currentOp->getOut(), res);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue