diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-06-14 16:27:39 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-06-14 16:27:39 +0000 |
commit | 3a6249b1fee2cc2f5b0231ea53e65e75509c7e48 (patch) | |
tree | 5690d8d735d5ec5e197e34f70143c4dfad8a18f4 /gdb/isi-xdep.c | |
parent | 69dbdc0535a2d349fc73caa48f4a74fc416f84e5 (diff) | |
download | gdb-3a6249b1fee2cc2f5b0231ea53e65e75509c7e48.zip gdb-3a6249b1fee2cc2f5b0231ea53e65e75509c7e48.tar.gz gdb-3a6249b1fee2cc2f5b0231ea53e65e75509c7e48.tar.bz2 |
* isi-xdep.c: New file.
* config/m68k/isi.mh (XDEPFILES): Add isi-xdep.o
Diffstat (limited to 'gdb/isi-xdep.c')
-rw-r--r-- | gdb/isi-xdep.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gdb/isi-xdep.c b/gdb/isi-xdep.c new file mode 100644 index 0000000..2497fc5 --- /dev/null +++ b/gdb/isi-xdep.c @@ -0,0 +1,20 @@ +/* Copyright (C) 1993 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 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ + +#include <machine/reg.h> +int rloc[] = { + R0, R1, R2, R3, R4, R5, R6, R7, R8, R9, R10, R11, R12, R13, FP, SP, PS, PC +}; |