Last change
on this file since 1096 was 1, checked in by vboxsync, 55 years ago |
import
|
-
Property svn:eol-style
set to
native
|
File size:
673 bytes
|
Line | |
---|
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);
|
---|
6 | void target_disas(FILE *out, target_ulong code, target_ulong size, int flags);
|
---|
7 | void monitor_disas(target_ulong pc, int nb_insn, int is_physical, int flags);
|
---|
8 |
|
---|
9 | /* Look up symbol for debugging purpose. Returns "" if unknown. */
|
---|
10 | const char *lookup_symbol(target_ulong orig_addr);
|
---|
11 |
|
---|
12 | /* Filled in by elfload.c. Simplistic, but will do for now. */
|
---|
13 | extern struct syminfo {
|
---|
14 | unsigned int disas_num_syms;
|
---|
15 | void *disas_symtab;
|
---|
16 | const char *disas_strtab;
|
---|
17 | struct syminfo *next;
|
---|
18 | } *syminfos;
|
---|
19 |
|
---|
20 | #endif /* _QEMU_DISAS_H */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.