complete const codes

This commit is contained in:
Volker Berlin 2017-04-08 18:14:41 +02:00
parent 301f49c2f4
commit 2766f8170a

View File

@ -45,6 +45,12 @@ interface InstructionOpcodes {
static final int I32_CONST = 0x41; static final int I32_CONST = 0x41;
static final int I64_CONST = 0x42;
static final int F32_CONST = 0x43;
static final int F64_CONST = 0x44;
static final int I32_ADD = 0x6A; static final int I32_ADD = 0x6A;
} }