diff options
author | Nick Clifton <nickc@redhat.com> | 2000-12-02 01:10:33 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2000-12-02 01:10:33 +0000 |
commit | c6c98b3833d01c45200708006011e5cecd461fac (patch) | |
tree | c07dc1c4a235bd50c648bec5d6adbc70a0c844ef /opcodes/mips-dis.c | |
parent | 84ea6cf2c5170547163a4bf09ac2bbb3cd424685 (diff) | |
download | gdb-c6c98b3833d01c45200708006011e5cecd461fac.zip gdb-c6c98b3833d01c45200708006011e5cecd461fac.tar.gz gdb-c6c98b3833d01c45200708006011e5cecd461fac.tar.bz2 |
Add MIPS SB1 machine
Diffstat (limited to 'opcodes/mips-dis.c')
-rw-r--r-- | opcodes/mips-dis.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/opcodes/mips-dis.c b/opcodes/mips-dis.c index 61f6788..a75dc89 100644 --- a/opcodes/mips-dis.c +++ b/opcodes/mips-dis.c @@ -371,6 +371,10 @@ set_mips_isa_type (mach, isa, cputype) target_processor = CPU_MIPS64; mips_isa = ISA_MIPS64; break; + case bfd_mach_mips_sb1: + target_processor = CPU_SB1; + mips_isa = ISA_MIPS64; + break; default: target_processor = CPU_R3000; mips_isa = ISA_MIPS3; |