diff options
author | obscuren <obscuren@obscura.com> | 2014-01-03 06:02:24 +0800 |
---|---|---|
committer | obscuren <obscuren@obscura.com> | 2014-01-03 06:02:24 +0800 |
commit | 9df4c745119b3ed10a7ad17887e8dd9cac249af7 (patch) | |
tree | 8ae82afaf78a225d685a146a4cc67a77d3ca773d /parsing.go | |
parent | 5b3d4fae6e03e5471a10c653fc0b016cc5e5dcfa (diff) | |
download | go-tangerine-9df4c745119b3ed10a7ad17887e8dd9cac249af7.tar go-tangerine-9df4c745119b3ed10a7ad17887e8dd9cac249af7.tar.gz go-tangerine-9df4c745119b3ed10a7ad17887e8dd9cac249af7.tar.bz2 go-tangerine-9df4c745119b3ed10a7ad17887e8dd9cac249af7.tar.lz go-tangerine-9df4c745119b3ed10a7ad17887e8dd9cac249af7.tar.xz go-tangerine-9df4c745119b3ed10a7ad17887e8dd9cac249af7.tar.zst go-tangerine-9df4c745119b3ed10a7ad17887e8dd9cac249af7.zip |
WIP rewrite vm
Diffstat (limited to 'parsing.go')
-rw-r--r-- | parsing.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/parsing.go b/parsing.go index d5dcce04f..765950a4c 100644 --- a/parsing.go +++ b/parsing.go @@ -11,6 +11,8 @@ import ( // Op codes var OpCodes = map[string]string{ "STOP": "0", + "PSH": "30", // 0x30 + /* "ADD": "16", // 0x10 "SUB": "17", // 0x11 "MUL": "18", // 0x12 @@ -48,6 +50,7 @@ var OpCodes = map[string]string{ "BLKHASH": "145", // 0x91 "COINBASE": "146", // 0x92 "SUICIDE": "255", // 0xff + */ } |