mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-03 04:12:10 +08:00
84f652b150
<link.h>. * i386b-nat.c: Add i386_float_info(), etc. * config/i386/nm-nbsd.h: #define FLOAT_INFO. * config/nm-nbsd.h: New file, for generic NetBSD native support. * config/i386/nm-nbsd.h: Use it. * config/sparc/nm-nbsd.h: Use it. * config/ns32k/nm-nbsd.h: Use it. * configure.in (i386-*-netbsd): Use config/i386/nbsd.m[ht]. (ns32k-*-netbsd): Use config/ns32k/nbsd.m[ht]. * config/i386/{nbsd.mh,nbsd.mt,nm-nbsd.h,tm-nbsd.h,xm-nbsd.h}: New files, support for NetBSD/i386. * config/ns32k/{nbsd.mh,nbsd.mh,nm-nbsd.h,tm-nbsd.h,xm-nbsd.h}: New files, support for NetBSD/ns32k.
37 lines
1.2 KiB
C
37 lines
1.2 KiB
C
/* Native-dependent definitions for ns32k running NetBSD, for GDB.
|
|
Copyright 1986, 1987, 1989, 1992, 1994 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., 675 Mass Ave, Cambridge, MA 02139, USA. */
|
|
|
|
#ifndef NM_NBSD_H
|
|
#define NM_NBSD_H
|
|
|
|
/* Get generic NetBSD native definitions. */
|
|
#include "nm-nbsd.h"
|
|
|
|
#if 0
|
|
#define FLOAT_INFO { extern ns32k_float_info(); ns32k_float_info(); }
|
|
#endif
|
|
|
|
#define REGISTER_U_ADDR(addr, blockend, regno) \
|
|
(addr) = ns32k_register_u_addr ((blockend),(regno));
|
|
|
|
extern int
|
|
ns32k_register_u_addr PARAMS ((int, int));
|
|
|
|
#endif /* NM_NBSD_H */
|