aboutsummaryrefslogtreecommitdiff
path: root/utils/x86disasm/disasm.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/x86disasm/disasm.h')
-rw-r--r--utils/x86disasm/disasm.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/utils/x86disasm/disasm.h b/utils/x86disasm/disasm.h
new file mode 100644
index 0000000..0124dcc
--- /dev/null
+++ b/utils/x86disasm/disasm.h
@@ -0,0 +1,15 @@
+
+
+#ifndef DISASM_H
+#define DISASM_H
+
+#include <string>
+
+#define GEN_INSN_OKAY 0
+#define GEN_INSN_IOERROR 1
+#define GEN_INSN_ERROR 2
+
+int GenerateInstructions(const std::string & out_filename, bool x64);
+
+#endif
+