diff options
author | Nick Clifton <nickc@redhat.com> | 2003-01-23 18:50:57 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2003-01-23 18:50:57 +0000 |
commit | 5177500f26e1fc3127c607f72bd2dfbffb9165b3 (patch) | |
tree | bc37078bce5312e407d6dc8c5e2137cd98c9671c /opcodes/sh-dis.c | |
parent | 3434109f523fb6fbe890fc044931f86d035bb1ed (diff) | |
download | gdb-5177500f26e1fc3127c607f72bd2dfbffb9165b3.zip gdb-5177500f26e1fc3127c607f72bd2dfbffb9165b3.tar.gz gdb-5177500f26e1fc3127c607f72bd2dfbffb9165b3.tar.bz2 |
Add SH2E support
Diffstat (limited to 'opcodes/sh-dis.c')
-rw-r--r-- | opcodes/sh-dis.c | 27 |
1 files changed, 15 insertions, 12 deletions
diff --git a/opcodes/sh-dis.c b/opcodes/sh-dis.c index 966a10e..a23110f 100644 --- a/opcodes/sh-dis.c +++ b/opcodes/sh-dis.c @@ -1,20 +1,20 @@ /* Disassemble SH instructions. - Copyright 1993, 1994, 1995, 1997, 1998, 2000, 2001, 2002 + Copyright 1993, 1994, 1995, 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> #include "sysdep.h" @@ -315,6 +315,9 @@ print_insn_sh (memaddr, info) case bfd_mach_sh2: target_arch = arch_sh2; break; + case bfd_mach_sh2e: + target_arch = arch_sh2e; + break; case bfd_mach_sh_dsp: target_arch = arch_sh_dsp; break; |