Commit f5a22216 authored by aniket-engg's avatar aniket-engg

opcodes added

parent c5f17d3e
...@@ -27,6 +27,9 @@ var codes = { ...@@ -27,6 +27,9 @@ var codes = {
0x18: ['XOR', 3, 2, 1, false], 0x18: ['XOR', 3, 2, 1, false],
0x19: ['NOT', 3, 1, 1, false], 0x19: ['NOT', 3, 1, 1, false],
0x1a: ['BYTE', 3, 2, 1, false], 0x1a: ['BYTE', 3, 2, 1, false],
0x1b: ['SHL', 3, 2, 1, false],
0x1c: ['SHR', 3, 2, 1, false],
0x1d: ['SAR', 3, 2, 1, false],
// 0x20 range - crypto // 0x20 range - crypto
0x20: ['SHA3', 30, 2, 1, false], 0x20: ['SHA3', 30, 2, 1, false],
...@@ -150,6 +153,7 @@ var codes = { ...@@ -150,6 +153,7 @@ var codes = {
0xf2: ['CALLCODE', 700, 7, 1, true, true], 0xf2: ['CALLCODE', 700, 7, 1, true, true],
0xf3: ['RETURN', 0, 2, 0, false], 0xf3: ['RETURN', 0, 2, 0, false],
0xf4: ['DELEGATECALL', 700, 6, 1, true, true], 0xf4: ['DELEGATECALL', 700, 6, 1, true, true],
0xf5: ['CREATE2', 32000, 4, 1, true, true],
0xfa: ['STATICCALL', 700, 6, 1, true, true], 0xfa: ['STATICCALL', 700, 6, 1, true, true],
0xfd: ['REVERT', 0, 2, 0, false], 0xfd: ['REVERT', 0, 2, 0, false],
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -45,6 +45,7 @@ ...@@ -45,6 +45,7 @@
"remix-lib": "0.4.13", "remix-lib": "0.4.13",
"remix-simulator": "0.1.9-alpha.6", "remix-simulator": "0.1.9-alpha.6",
"remix-solidity": "0.3.16", "remix-solidity": "0.3.16",
"signale": "^1.4.0",
"web3": "1.0.0-beta.36", "web3": "1.0.0-beta.36",
"winston": "^3.0.0" "winston": "^3.0.0"
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment