You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.3 KiB
35 lines
1.3 KiB
|
25 years ago
|
/* Common target dependent code for GDB on SPARC systems running NetBSD.
|
||
|
|
Copyright 2002 Free Software Foundation, Inc.
|
||
|
28 years ago
|
|
||
|
28 years ago
|
This file is part of GDB.
|
||
|
28 years ago
|
|
||
|
28 years ago
|
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.
|
||
|
28 years ago
|
|
||
|
28 years ago
|
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.
|
||
|
28 years ago
|
|
||
|
28 years ago
|
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. */
|
||
|
27 years ago
|
|
||
|
25 years ago
|
#ifndef SPARCNBSD_TDEP_H
|
||
|
|
#define SPARCNBSD_TDEP_H
|
||
|
27 years ago
|
|
||
|
25 years ago
|
void sparcnbsd_supply_reg32 (char *, int);
|
||
|
|
void sparcnbsd_supply_reg64 (char *, int);
|
||
|
|
void sparcnbsd_fill_reg32 (char *, int);
|
||
|
|
void sparcnbsd_fill_reg64 (char *, int);
|
||
|
27 years ago
|
|
||
|
25 years ago
|
void sparcnbsd_supply_fpreg32 (char *, int);
|
||
|
|
void sparcnbsd_supply_fpreg64 (char *, int);
|
||
|
|
void sparcnbsd_fill_fpreg32 (char *, int);
|
||
|
|
void sparcnbsd_fill_fpreg64 (char *, int);
|
||
|
27 years ago
|
|
||
|
25 years ago
|
#endif /* SPARCNBSD_TDEP_H */
|