diff options
| author | Loic GUEGAN <loic.guegan@yahoo.fr> | 2018-08-31 18:42:12 +0200 |
|---|---|---|
| committer | Loic GUEGAN <loic.guegan@yahoo.fr> | 2018-08-31 18:42:12 +0200 |
| commit | 27268a12532a3f332bb06ff71c947e15755734c8 (patch) | |
| tree | 59e44879f685423eeebf6710e7673650a2c7de6c /components/ijvm.py | |
| parent | a31c5667846b291056f29d3ef7bdf0f4bf175e10 (diff) | |
Add source code
Diffstat (limited to 'components/ijvm.py')
| -rw-r--r-- | components/ijvm.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/components/ijvm.py b/components/ijvm.py new file mode 100644 index 0000000..b8ca8a2 --- /dev/null +++ b/components/ijvm.py @@ -0,0 +1,24 @@ + +# Build IJVM +ijvm=dict({ + "BIPUSH":0x10, + "DUP":0x59, + "GOTO":0xA7, + "IADD":0x60, + "IAND":0x7E, + "IFEQ":0x99, + "IFLT":0x9B, + "IF_ICMPEQ":0x9F, + "IINC":0x84, + "ILOAD":0x15, + "INVOKEVIRTUAL":0xB6, + "IOR":0x80, + "IRETURN":0xAC, + "ISTORE":0x36, + "ISUB":0x64, + "LDC_W":0x13, + "NOP":0x00, + "POP":0x57, + "SWAP":0x5F, + "WIDE":0xC4 +}) |
