MicSim/components/ijvm.py
2018-08-31 18:42:12 +02:00

24 lines
328 B
Python
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 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
})