mirror of
https://github.com/status-im/nimbus-eth1.git
synced 2025-01-10 20:36:31 +00:00
15 lines
303 B
Nim
15 lines
303 B
Nim
import ../nimbus/vm/code_stream, strformat
|
|
|
|
var c = newCodeStreamFromUnescaped("0x6003600202600055")
|
|
|
|
let opcodes = c.decompile()
|
|
for op in opcodes:
|
|
echo &"[{op[0]}]\t{op[1]}\t{op[2]}"
|
|
|
|
# [1] PUSH1 0x03
|
|
# [3] PUSH1 0x02
|
|
# [4] MUL
|
|
# [6] PUSH1 0x00
|
|
# [7] SSTORE
|
|
# [-1] STOP
|