diff options
author | Nick Clifton <nickc@redhat.com> | 2003-09-04 11:04:38 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2003-09-04 11:04:38 +0000 |
commit | 8ad30312fff34325113307cb27bcae49d220df15 (patch) | |
tree | e36909398f52d213a45a92122028b2c953768369 /opcodes/v850-dis.c | |
parent | 3c9030c1f46b3255af11e975ae6f62713f55d645 (diff) | |
download | gdb-8ad30312fff34325113307cb27bcae49d220df15.zip gdb-8ad30312fff34325113307cb27bcae49d220df15.tar.gz gdb-8ad30312fff34325113307cb27bcae49d220df15.tar.bz2 |
Add binutils support for v850e1 processor
Diffstat (limited to 'opcodes/v850-dis.c')
-rw-r--r-- | opcodes/v850-dis.c | 28 |
1 files changed, 16 insertions, 12 deletions
diff --git a/opcodes/v850-dis.c b/opcodes/v850-dis.c index 7c449f6..b5022cd 100644 --- a/opcodes/v850-dis.c +++ b/opcodes/v850-dis.c @@ -1,20 +1,20 @@ /* Disassemble V850 instructions. - Copyright 1996, 1997, 1998, 2000, 2001, 2002 + Copyright 1996, 1997, 1998, 2000, 2001, 2002, 2003 Free Software Foundation, Inc. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include <stdio.h> @@ -78,6 +78,10 @@ disassemble (memaddr, info, insn) case bfd_mach_v850e: target_processor = PROCESSOR_V850E; break; + + case bfd_mach_v850e1: + target_processor = PROCESSOR_V850E1; + break; } /* Find the opcode. */ |