diff options
author | Mark Alexander <marka@cygnus> | 1996-10-28 04:24:30 +0000 |
---|---|---|
committer | Mark Alexander <marka@cygnus> | 1996-10-28 04:24:30 +0000 |
commit | 26c87277f4f9cdf4d69b3c9367502321ddc2576e (patch) | |
tree | d0920bc277eaec527535a352a00eb1b667f39c15 /gdb/config | |
parent | 1cb1b16cfbe804c50c10954649ca7c45e68baff3 (diff) | |
download | gdb-26c87277f4f9cdf4d69b3c9367502321ddc2576e.zip gdb-26c87277f4f9cdf4d69b3c9367502321ddc2576e.tar.gz gdb-26c87277f4f9cdf4d69b3c9367502321ddc2576e.tar.bz2 |
* config/mips/{tm-vr5000.h,tm-vr5000el.h,vr5000.mt,vr5000el.mt}:
New files.
* configure.tgt: Modify cases for vr5000 to use new files.
Diffstat (limited to 'gdb/config')
-rw-r--r-- | gdb/config/mips/tm-vr5000.h | 23 | ||||
-rw-r--r-- | gdb/config/mips/tm-vr5000el.h | 23 | ||||
-rw-r--r-- | gdb/config/mips/vr5000.mt | 5 | ||||
-rw-r--r-- | gdb/config/mips/vr5000el.mt | 5 |
4 files changed, 56 insertions, 0 deletions
diff --git a/gdb/config/mips/tm-vr5000.h b/gdb/config/mips/tm-vr5000.h new file mode 100644 index 0000000..23bff57 --- /dev/null +++ b/gdb/config/mips/tm-vr5000.h @@ -0,0 +1,23 @@ +/* Copyright (C) 1996 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. */ + +#define TARGET_BYTE_ORDER_SELECTABLE +#define TARGET_MONITOR_PROMPT "<RISQ> " +#define MIPS_EABI 1 + +#include "mips/tm-bigmips64.h" diff --git a/gdb/config/mips/tm-vr5000el.h b/gdb/config/mips/tm-vr5000el.h new file mode 100644 index 0000000..5de282c --- /dev/null +++ b/gdb/config/mips/tm-vr5000el.h @@ -0,0 +1,23 @@ +/* Copyright (C) 1996 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. */ + +#define TARGET_BYTE_ORDER_SELECTABLE +#define TARGET_MONITOR_PROMPT "<RISQ> " +#define MIPS_EABI 1 + +#include "mips/tm-mips64.h" diff --git a/gdb/config/mips/vr5000.mt b/gdb/config/mips/vr5000.mt new file mode 100644 index 0000000..2d439ee --- /dev/null +++ b/gdb/config/mips/vr5000.mt @@ -0,0 +1,5 @@ +# Target: Big-endian SIM monitor board. +TDEPFILES= mips-tdep.o remote-mips.o +TM_FILE= tm-vr5000.h +SIM_OBS = remote-sim.o +SIM = ../sim/mips/libsim.a -lm diff --git a/gdb/config/mips/vr5000el.mt b/gdb/config/mips/vr5000el.mt new file mode 100644 index 0000000..479679b --- /dev/null +++ b/gdb/config/mips/vr5000el.mt @@ -0,0 +1,5 @@ +# Target: Little-endian SIM monitor board. +TDEPFILES= mips-tdep.o remote-mips.o +TM_FILE= tm-vr5000el.h +SIM_OBS = remote-sim.o +SIM = ../sim/mips/libsim.a -lm |