summaryrefslogtreecommitdiff
path: root/include/wabt/opcode-code-table.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/wabt/opcode-code-table.h')
-rw-r--r--include/wabt/opcode-code-table.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/wabt/opcode-code-table.h b/include/wabt/opcode-code-table.h
index 3adb478d..13c5838e 100644
--- a/include/wabt/opcode-code-table.h
+++ b/include/wabt/opcode-code-table.h
@@ -24,7 +24,12 @@
extern "C" {
#endif
-#define WABT_OPCODE_CODE_TABLE_SIZE 65536
+#define WABT_OPCODE_CODE_TABLE_SIZE 131072
+
+/*
+ * Number of bits required to store an opcode
+ */
+#define MAX_OPCODE_BITS 9
/* This structure is defined in C because C++ doesn't (yet) allow you to use
* designated array initializers, i.e. [10] = {foo}.