1e88b412bSchristos /* Target-dependent code for NetBSD/powerpc.
2e88b412bSchristos 
3*56bb7041Schristos    Copyright (C) 2004-2020 Free Software Foundation, Inc.
4e88b412bSchristos 
5e88b412bSchristos    This file is part of GDB.
6e88b412bSchristos 
7e88b412bSchristos    This program is free software; you can redistribute it and/or modify
8e88b412bSchristos    it under the terms of the GNU General Public License as published by
9e88b412bSchristos    the Free Software Foundation; either version 3 of the License, or
10e88b412bSchristos    (at your option) any later version.
11e88b412bSchristos 
12e88b412bSchristos    This program is distributed in the hope that it will be useful,
13e88b412bSchristos    but WITHOUT ANY WARRANTY; without even the implied warranty of
14e88b412bSchristos    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15e88b412bSchristos    GNU General Public License for more details.
16e88b412bSchristos 
17e88b412bSchristos    You should have received a copy of the GNU General Public License
18e88b412bSchristos    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
19e88b412bSchristos 
20e88b412bSchristos #ifndef PPC_NBSD_TDEP_H
21e88b412bSchristos #define PPC_NBSD_TDEP_H
22e88b412bSchristos 
23e88b412bSchristos struct regset;
24e88b412bSchristos 
25e88b412bSchristos /* Register offsets for NetBSD/powerpc.  */
26e88b412bSchristos extern struct ppc_reg_offsets ppcnbsd_reg_offsets;
27e88b412bSchristos 
28e88b412bSchristos /* Register sets for NetBSD/powerpc.  */
29e88b412bSchristos extern const struct regset ppcnbsd_gregset;
30e88b412bSchristos extern const struct regset ppcnbsd_fpregset;
31e88b412bSchristos 
32e88b412bSchristos #endif /* PPC_NBSD_TDEP_H */
33