Skip to content

Commit

Permalink
Fix MULRSHIFTMOD operands
Browse files Browse the repository at this point in the history
  • Loading branch information
hacker-volodya committed Mar 7, 2024
1 parent 2bc31d1 commit 49ac8d6
Showing 1 changed file with 27 additions and 3 deletions.
30 changes: 27 additions & 3 deletions cp0.json
Original file line number Diff line number Diff line change
Expand Up @@ -6227,7 +6227,15 @@
"doc_opcode": "A9BC",
"tlb": "#A9BC",
"prefix": "A9BC",
"operands": []
"operands": [
{
"name": "t",
"type": "uint",
"size": 8,
"min_value": 0,
"max_value": 255
}
]
},
"value_flow": {
"doc_stack": "x y - q=floor(x*y/2^(tt+1)) r=xy-q*2^(tt+1)",
Expand Down Expand Up @@ -6261,7 +6269,15 @@
"doc_opcode": "A9BD",
"tlb": "#A9BD",
"prefix": "A9BD",
"operands": []
"operands": [
{
"name": "t",
"type": "uint",
"size": 8,
"min_value": 0,
"max_value": 255
}
]
},
"value_flow": {
"doc_stack": "x y - q=round(x*y/2^(tt+1)) r=xy-q*2^(tt+1)",
Expand Down Expand Up @@ -6295,7 +6311,15 @@
"doc_opcode": "A9BE",
"tlb": "#A9BE",
"prefix": "A9BE",
"operands": []
"operands": [
{
"name": "t",
"type": "uint",
"size": 8,
"min_value": 0,
"max_value": 255
}
]
},
"value_flow": {
"doc_stack": "x y - q=ceil(x*y/2^(tt+1)) r=xy-q*2^(tt+1)",
Expand Down

0 comments on commit 49ac8d6

Please sign in to comment.