From 180fd370b16504faa5de1995e89494b75218acb6 Mon Sep 17 00:00:00 2001 From: Jackie Smith Cashion Date: Fri, 1 Sep 1995 15:33:14 +0000 Subject: Ideally the "remote-mips.c" prompt spotting code should be updated to spot different prompts at run-time, so as to avoid having target specific versions of gdb. This is a pending TODO. Fri Sep 1 08:25:50 1995 James G. Smith * configure (mips64*vr4300*-*-elf): Support added. * remote-mips.c (mips_readchar): Change to allow build-time prompt string. * config/mips/tm-mips.h: Added TARGET_MONITOR_PROMPT. * config/mips/{vr4300.mt, vr4300el.mt, tm-vr4300.h, tm-vr4300el.h}: Added. --- gdb/config/mips/.Sanitize | 3 +++ gdb/config/mips/tm-mips.h | 6 ++++++ gdb/config/mips/tm-vr4300.h | 25 +++++++++++++++++++++++++ gdb/config/mips/tm-vr4300el.h | 25 +++++++++++++++++++++++++ gdb/config/mips/vr4300.mt | 3 +++ gdb/config/mips/vr4300el.mt | 3 +++ 6 files changed, 65 insertions(+) create mode 100644 gdb/config/mips/tm-vr4300.h create mode 100644 gdb/config/mips/tm-vr4300el.h create mode 100644 gdb/config/mips/vr4300.mt create mode 100644 gdb/config/mips/vr4300el.mt (limited to 'gdb/config') diff --git a/gdb/config/mips/.Sanitize b/gdb/config/mips/.Sanitize index 111e422..63cc74b 100644 --- a/gdb/config/mips/.Sanitize +++ b/gdb/config/mips/.Sanitize @@ -65,6 +65,9 @@ tm-mips.h tm-mips64.h tm-mipsm3.h tm-mipsv4.h +tm-vr4300.h +tm-vr4300el.h +vr4300.mt xm-irix3.h xm-irix4.h xm-irix5.h diff --git a/gdb/config/mips/tm-mips.h b/gdb/config/mips/tm-mips.h index 4f2256f..200cc88 100644 --- a/gdb/config/mips/tm-mips.h +++ b/gdb/config/mips/tm-mips.h @@ -32,6 +32,12 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #define GDB_TARGET_IS_MIPS64 0 #endif +/* CYGNUS LOCAL jsmith */ +#if !defined (TARGET_MONITOR_PROMPT) +#define TARGET_MONITOR_PROMPT { '<', 'I', 'D', 'T', '>' } +#endif +/* END CYGNUS LOCAL */ + /* Floating point is IEEE compliant */ #define IEEE_FLOAT diff --git a/gdb/config/mips/tm-vr4300.h b/gdb/config/mips/tm-vr4300.h new file mode 100644 index 0000000..60cffbf --- /dev/null +++ b/gdb/config/mips/tm-vr4300.h @@ -0,0 +1,25 @@ +/* Copyright (C) 1993 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 { '<', 'R', 'I', 'S', 'Q', '>', ' ' } + +/* Hack to allow 64bit register reads, from 32bit BFD world */ +#define CC_HAS_LONG_LONG 1 + +#include "mips/tm-bigmips64.h" diff --git a/gdb/config/mips/tm-vr4300el.h b/gdb/config/mips/tm-vr4300el.h new file mode 100644 index 0000000..53a1b58 --- /dev/null +++ b/gdb/config/mips/tm-vr4300el.h @@ -0,0 +1,25 @@ +/* Copyright (C) 1993 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 { '<', 'R', 'I', 'S', 'Q', '>', ' ' } + +/* Hack to allow 64bit register reads, from 32bit BFD world */ +#define CC_HAS_LONG_LONG 1 + +#include "mips/tm-mips64.h" diff --git a/gdb/config/mips/vr4300.mt b/gdb/config/mips/vr4300.mt new file mode 100644 index 0000000..b5977e8 --- /dev/null +++ b/gdb/config/mips/vr4300.mt @@ -0,0 +1,3 @@ +# Target: Big-endian SIM monitor board. +TDEPFILES= mips-tdep.o remote-mips.o +TM_FILE= tm-vr4300.h diff --git a/gdb/config/mips/vr4300el.mt b/gdb/config/mips/vr4300el.mt new file mode 100644 index 0000000..9ba2a24 --- /dev/null +++ b/gdb/config/mips/vr4300el.mt @@ -0,0 +1,3 @@ +# Target: Little-endian SIM monitor board. +TDEPFILES= mips-tdep.o remote-mips.o +TM_FILE= tm-vr4300el.h -- cgit v1.1