From 119d5ed7f49e0b92e371ba42921180912db3b602 Mon Sep 17 00:00:00 2001 From: Volker Berlin Date: Sun, 9 Apr 2017 18:44:25 +0200 Subject: [PATCH] add "add" operations --- .../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 23c3888..cc7bbfe 100644 --- a/src/de/inetsoftware/jwebassembly/binary/InstructionOpcodes.java +++ b/src/de/inetsoftware/jwebassembly/binary/InstructionOpcodes.java @@ -53,4 +53,9 @@ interface InstructionOpcodes { static final int I32_ADD = 0x6A; + static final int I64_ADD = 0x7C; + + static final int F32_ADD = 0x92; + + static final int F64_ADD = 0xA0; }