aboutsummaryrefslogtreecommitdiffstats
path: root/disas.h
diff options
context:
space:
mode:
Diffstat (limited to 'disas.h')
-rw-r--r--disas.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/disas.h b/disas.h
new file mode 100644
index 000000000..b7db47829
--- /dev/null
+++ b/disas.h
@@ -0,0 +1,20 @@
+#ifndef _QEMU_DISAS_H
+#define _QEMU_DISAS_H
+
+enum disas_type {
+ DISAS_I386_I386,
+ DISAS_I386_I8086,
+ DISAS_TARGET, /* whatever host is. */
+};
+
+/* Disassemble this for me please... (debugging). */
+void disas(FILE *out, void *code, unsigned long size, enum disas_type type);
+
+/* Look up symbol for debugging purpose. Returns "" if unknown. */
+const char *lookup_symbol(void *orig_addr);
+
+/* Filled in by elfload.c. Simplistic, but will do for now. */
+extern unsigned int disas_num_syms;
+extern void *disas_symtab; /* FIXME: includes are a mess --RR */
+extern const char *disas_strtab;
+#endif /* _QEMU_DISAS_H */