* core.c (memory_error): Reword error msg to mislead less.

* mips-pinsn.c (print_insn_arg 'd'):  Print $ with reg name.

        * mipsread.c (read_mips_symtab, read_the_mips_symtab,
        parse_partial_symbols): Use newer BFD internals (external_filehdr
        and external_aouthdr), byte-swap the fields that we care about
        before using them, and make the file header data local to
        read_the_mips_symtab rather than global.
This commit is contained in:
John Gilmore
1991-07-09 02:08:13 +00:00
parent 2d413945c9
commit b8c50f0918
4 changed files with 67 additions and 37 deletions

View File

@@ -275,7 +275,7 @@ memory_error (status, memaddr)
{
/* Actually, address between memaddr and memaddr + len
was out of bounds. */
error ("Cannot access memory: address 0x%x out of bounds.", memaddr);
error ("Cannot access memory at address 0x%x.", memaddr);
}
else
{