Skip to content

Commit

Permalink
Prototype of registers flow
Browse files Browse the repository at this point in the history
  • Loading branch information
hacker-volodya committed Feb 29, 2024
1 parent 9ff8af4 commit 3c14689
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions cp0.json
Original file line number Diff line number Diff line change
Expand Up @@ -21128,7 +21128,7 @@
},
"value_flow": {
"doc_stack": "- x",
"inputs": { "stack": [] },
"inputs": { "stack": [], "registers": [{ "type": "variable", "var_name": "i" }] },
"outputs": { "stack": [{ "type": "simple", "name": "x" }] }
},
"control_flow": { "branches": [], "nobranch": true }
Expand Down Expand Up @@ -21160,7 +21160,7 @@
"value_flow": {
"doc_stack": "x - ",
"inputs": { "stack": [{ "type": "simple", "name": "x" }] },
"outputs": { "stack": [] }
"outputs": { "stack": [], "registers": [{ "type": "variable", "var_name": "i" }] }
},
"control_flow": { "branches": [], "nobranch": true }
},
Expand Down Expand Up @@ -21230,8 +21230,8 @@
},
"value_flow": {
"doc_stack": "x - ",
"inputs": { "stack": [{ "type": "simple", "name": "x" }] },
"outputs": { "stack": [] }
"inputs": { "stack": [{ "type": "simple", "name": "x" }], "registers": [{ "type": "constant", "index": 0 }] },
"outputs": { "stack": [], "registers": [{ "type": "constant", "index": 0 }] }
},
"control_flow": { "branches": [], "nobranch": true }
},
Expand Down Expand Up @@ -21261,8 +21261,8 @@
},
"value_flow": {
"doc_stack": "x - ",
"inputs": { "stack": [{ "type": "simple", "name": "x" }] },
"outputs": { "stack": [] }
"inputs": { "stack": [{ "type": "simple", "name": "x" }], "registers": [{ "type": "constant", "index": 1 }] },
"outputs": { "stack": [], "registers": [{ "type": "constant", "index": 1 }] }
},
"control_flow": { "branches": [], "nobranch": true }
},
Expand Down

0 comments on commit 3c14689

Please sign in to comment.