mirror of
https://github.com/qemu/qemu.git
synced 2024-11-24 11:23:43 +08:00
more consistent type for size (still a bug in wrapping)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1230 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
18a6d284ad
commit
83b34f8b57
2
disas.c
2
disas.c
@ -110,7 +110,7 @@ bfd_vma bfd_getb32 (const bfd_byte *addr)
|
||||
|
||||
/* Disassemble this for me please... (debugging). 'flags' is only used
|
||||
for i386: non zero means 16 bit code */
|
||||
void target_disas(FILE *out, target_ulong code, unsigned long size, int flags)
|
||||
void target_disas(FILE *out, target_ulong code, target_ulong size, int flags)
|
||||
{
|
||||
target_ulong pc;
|
||||
int count;
|
||||
|
2
disas.h
2
disas.h
@ -3,7 +3,7 @@
|
||||
|
||||
/* Disassemble this for me please... (debugging). */
|
||||
void disas(FILE *out, void *code, unsigned long size);
|
||||
void target_disas(FILE *out, target_ulong code, unsigned long size, int flags);
|
||||
void target_disas(FILE *out, target_ulong code, target_ulong size, int flags);
|
||||
void monitor_disas(target_ulong pc, int nb_insn, int is_physical, int flags);
|
||||
|
||||
/* Look up symbol for debugging purpose. Returns "" if unknown. */
|
||||
|
Loading…
Reference in New Issue
Block a user