summaryrefslogtreecommitdiffhomepage
path: root/src/udis86.c
diff options
context:
space:
mode:
authorMichael Smith <mikesmiffy128@gmail.com>2021-11-20 03:10:50 +0000
committerMichael Smith <mikesmiffy128@gmail.com>2021-11-20 03:18:08 +0000
commitda6f343032cb01597dc7866e66f091adf3243a62 (patch)
tree870f8cb8e82bb42202ab92bea03fc6ab35ada7ca /src/udis86.c
Initial public snapshot
With code from Bill. Thanks Bill!
Diffstat (limited to 'src/udis86.c')
-rw-r--r--src/udis86.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/udis86.c b/src/udis86.c
new file mode 100644
index 0000000..fcb3656
--- /dev/null
+++ b/src/udis86.c
@@ -0,0 +1,11 @@
+/* This file is dedicated to the public domain. */
+
+#include "3p/udis86/udis86.c"
+#include "3p/udis86/decode.c"
+#include "3p/udis86/itab.c"
+// this stuff is optional but llvm is smart enough to remove it if it's unused,
+// so we keep it in here to be able to use it conveniently for debugging etc.
+#include "3p/udis86/syn.c"
+#include "3p/udis86/syn-intel.c"
+
+// vi: sw=4 ts=4 noet tw=80 cc=80