diff options
author | David Guillen Fandos <david@davidgf.net> | 2023-06-15 04:45:03 +0100 |
---|---|---|
committer | Maciej W. Rozycki <macro@orcam.me.uk> | 2023-06-15 04:45:03 +0100 |
commit | df18f71b565c29f6f1ebd385cb1aed97d00e9660 (patch) | |
tree | 9bf1c937007fab248a8c3cbee838326bac497104 /binutils/readelf.c | |
parent | 011365bacac6a95dab2a6a96e96503983682be50 (diff) | |
download | gdb-df18f71b565c29f6f1ebd385cb1aed97d00e9660.zip gdb-df18f71b565c29f6f1ebd385cb1aed97d00e9660.tar.gz gdb-df18f71b565c29f6f1ebd385cb1aed97d00e9660.tar.bz2 |
Add MIPS Allegrex CPU as a MIPS2-based CPU
The Allegrex CPU was created by Sony Interactive Entertainment to power
their portable console, the PlayStation Portable.
The pspdev organization maintains all sorts of tools to create software
for said device including documentation.
Signed-off-by: David Guillen Fandos <david@davidgf.net>
Diffstat (limited to 'binutils/readelf.c')
-rw-r--r-- | binutils/readelf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/binutils/readelf.c b/binutils/readelf.c index c3e5c58..97d72d0 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -4044,6 +4044,7 @@ get_machine_flags (Filedata * filedata, unsigned e_flags, unsigned e_machine) case E_MIPS_MACH_OCTEON3: strcat (buf, ", octeon3"); break; case E_MIPS_MACH_XLR: strcat (buf, ", xlr"); break; case E_MIPS_MACH_IAMR2: strcat (buf, ", interaptiv-mr2"); break; + case E_MIPS_MACH_ALLEGREX: strcat(buf, ", allegrex"); break; case 0: /* We simply ignore the field in this case to avoid confusion: MIPS ELF does not specify EF_MIPS_MACH, it is a GNU |