Statistics
| Branch: | Revision:

root / disas.h @ 9307c4c1

History | View | Annotate | Download (595 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
void monitor_disas(target_ulong pc, int nb_insn, int is_physical, int flags);
7

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

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