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 /gas/config/tc-mips.c | |
parent | 84ea6cf2c5170547163a4bf09ac2bbb3cd424685 (diff) | |
download | gdb-c6c98b3833d01c45200708006011e5cecd461fac.zip gdb-c6c98b3833d01c45200708006011e5cecd461fac.tar.gz gdb-c6c98b3833d01c45200708006011e5cecd461fac.tar.bz2 |
Add MIPS SB1 machine
Diffstat (limited to 'gas/config/tc-mips.c')
-rw-r--r-- | gas/config/tc-mips.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index f4f1130..9f171b4 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -9243,6 +9243,7 @@ MIPS options:\n\ show (stream, "8000", &column, &first); show (stream, "10000", &column, &first); show (stream, "mips32-4k", &column, &first); + show (stream, "sb-1", &column, &first); fputc ('\n', stream); fprintf (stream, _("\ @@ -12048,6 +12049,12 @@ static const struct mips_cpu_info mips_cpu_info_table[] = { "mips32-4km", 0, ISA_MIPS32, CPU_MIPS32_4K, }, { "mips32-4kp", 0, ISA_MIPS32, CPU_MIPS32_4K, }, + /* SiByte SB-1 CPU */ + { "SB-1", 0, ISA_MIPS64, CPU_SB1, }, + { "sb-1250", 0, ISA_MIPS64, CPU_SB1, }, + { "sb1", 0, ISA_MIPS64, CPU_SB1, }, + { "sb1250", 0, ISA_MIPS64, CPU_SB1, }, + /* End marker. */ { NULL, 0, 0, 0, }, }; |