diff options
author | Yoshinori Sato <ysato@users.sourceforge.jp> | 2005-02-12 10:38:52 +0000 |
---|---|---|
committer | Yoshinori Sato <ysato@users.sourceforge.jp> | 2005-02-12 10:38:52 +0000 |
commit | f0bdd87d9f9a291a60936337b8c2dca97157ca2a (patch) | |
tree | 9d335b1d9e5aa7b7436720ae42300995eb5f6ce3 /gdb/config | |
parent | a3f171870f6bcdf091a0647c37e4e25c0020e4f4 (diff) | |
download | gdb-f0bdd87d9f9a291a60936337b8c2dca97157ca2a.zip gdb-f0bdd87d9f9a291a60936337b8c2dca97157ca2a.tar.gz gdb-f0bdd87d9f9a291a60936337b8c2dca97157ca2a.tar.bz2 |
Restore h8300 support
Diffstat (limited to 'gdb/config')
-rw-r--r-- | gdb/config/h8300/h8300.mt | 6 | ||||
-rw-r--r-- | gdb/config/h8300/tm-h8300.h | 32 |
2 files changed, 38 insertions, 0 deletions
diff --git a/gdb/config/h8300/h8300.mt b/gdb/config/h8300/h8300.mt new file mode 100644 index 0000000..4d27efc --- /dev/null +++ b/gdb/config/h8300/h8300.mt @@ -0,0 +1,6 @@ +# Target: H8300 with HMS monitor, E7000 ICE and H8 simulator +TDEPFILES= h8300-tdep.o remote-e7000.o ser-e7kpc.o monitor.o remote-hms.o dsrec.o +DEPRECATED_TM_FILE= tm-h8300.h + +SIM_OBS = remote-sim.o +SIM = ../sim/h8300/libsim.a diff --git a/gdb/config/h8300/tm-h8300.h b/gdb/config/h8300/tm-h8300.h new file mode 100644 index 0000000..a1c337e --- /dev/null +++ b/gdb/config/h8300/tm-h8300.h @@ -0,0 +1,32 @@ +/* Parameters for execution on a H8/300 series machine. + Copyright 1992, 1993, 1994, 1996, 1998, 1999, 2000 + Free Software Foundation, Inc. + + This file is part of GDB. + + 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. + + 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. */ +/* Contributed by Steve Chamberlain sac@cygnus.com */ + +/* Needed for remote.c */ +#define DEPRECATED_REMOTE_BREAKPOINT { 0x57, 0x30} /* trapa #3 */ +/* Needed for remote-hms.c */ +#define CCR_REGNUM 8 +/* Needed for remote-e7000.c */ +#define NUM_REALREGS ((TARGET_ARCHITECTURE->mach == bfd_mach_h8300s || \ + TARGET_ARCHITECTURE->mach == bfd_mach_h8300sn || \ + TARGET_ARCHITECTURE->mach == bfd_mach_h8300sx || \ + TARGET_ARCHITECTURE->mach == bfd_mach_h8300sxn) ? 11 : 10) + |