Statistics
| Branch: | Revision:

root / disas.h @ 9a64fbe4

History | View | Annotate | Download (517 Bytes)

1
#ifndef _QEMU_DISAS_H
2
#define _QEMU_DISAS_H
3

    
4
/* Disassemble this for me please... (debugging). */
5
void disas(FILE *out, void *code, unsigned long size, int is_host, int flags);
6

    
7
/* Look up symbol for debugging purpose.  Returns "" if unknown. */
8
const char *lookup_symbol(void *orig_addr);
9

    
10
/* Filled in by elfload.c.  Simplistic, but will do for now. */
11
extern unsigned int disas_num_syms;
12
extern void *disas_symtab;  /* FIXME: includes are a mess --RR */
13
extern const char *disas_strtab;
14
#endif /* _QEMU_DISAS_H */