From 88a841748bfe86198e37c4bc8a010c2402873d7c Mon Sep 17 00:00:00 2001 From: Volker Berlin Date: Tue, 11 Apr 2017 17:41:28 +0200 Subject: [PATCH] first conversion opcode --- .../inetsoftware/jwebassembly/binary/InstructionOpcodes.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/de/inetsoftware/jwebassembly/binary/InstructionOpcodes.java b/src/de/inetsoftware/jwebassembly/binary/InstructionOpcodes.java index cc7bbfe..ba811c7 100644 --- a/src/de/inetsoftware/jwebassembly/binary/InstructionOpcodes.java +++ b/src/de/inetsoftware/jwebassembly/binary/InstructionOpcodes.java @@ -58,4 +58,9 @@ interface InstructionOpcodes { static final int F32_ADD = 0x92; static final int F64_ADD = 0xA0; + + // === data type conversions ===== + + static final int I32_WRAP_I64 = 0xA7; + }