]> git.proxmox.com Git - qemu.git/blame - disas.h
fixed ins in case of page fault
[qemu.git] / disas.h
CommitLineData
b9adb4a6
FB
1#ifndef _QEMU_DISAS_H
2#define _QEMU_DISAS_H
3
b9adb4a6 4/* Disassemble this for me please... (debugging). */
95cbfc64 5void disas(FILE *out, void *code, unsigned long size, int is_host, int flags);
9307c4c1 6void monitor_disas(target_ulong pc, int nb_insn, int is_physical, int flags);
b9adb4a6
FB
7
8/* Look up symbol for debugging purpose. Returns "" if unknown. */
9const char *lookup_symbol(void *orig_addr);
10
11/* Filled in by elfload.c. Simplistic, but will do for now. */
12extern unsigned int disas_num_syms;
13extern void *disas_symtab; /* FIXME: includes are a mess --RR */
14extern const char *disas_strtab;
15#endif /* _QEMU_DISAS_H */