ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/mon/src/mon_disass.cpp
(Generate patch)

Comparing mon/src/mon_disass.cpp (file contents):
Revision 1.9 by cebix, 2004-02-12T17:18:03Z vs.
Revision 1.10 by gbeauche, 2004-06-14T14:23:59Z

# Line 84 | Line 84 | void generic_print_address(bfd_vma addr,
84                          }
85                  }
86          }
87 <        info->fprintf_func(info->stream, "$%08x", addr);
87 >        if (addr >= UVAL64(0x100000000))
88 >                info->fprintf_func(info->stream, "$%08x%08x", (uint32)(addr >> 32), (uint32)addr);
89 >        else
90 >                info->fprintf_func(info->stream, "$%08x", (uint32)addr);
91   }
92  
93   int generic_symbol_at_address(bfd_vma addr, struct disassemble_info *info)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines