1156608Sdeischen/***********************************************************************
2156608SdeischenCopyright 2003-2006 Raza Microelectronics, Inc.(RMI).
3197163SdeischenThis is a derived work from software originally provided by the external
4197163Sdeischenentity identified below. The licensing terms and warranties specified in
5197163Sdeischenthe header of the original work apply to this derived work.
6197163SdeischenContribution by RMI:
7197163Sdeischen*****************************#RMI_1#**********************************/
8197163Sdeischen/* Common target dependent code for GDB on MIPS systems running NetBSD.
9156608Sdeischen   Copyright 2002 Free Software Foundation, Inc.
10174595Sdeischen
11156608Sdeischen   This file is part of GDB.
12156608Sdeischen
13156608Sdeischen   This program is free software; you can redistribute it and/or modify
14174595Sdeischen   it under the terms of the GNU General Public License as published by
15174595Sdeischen   the Free Software Foundation; either version 2 of the License, or
16174595Sdeischen   (at your option) any later version.
17174595Sdeischen
18197163Sdeischen   This program is distributed in the hope that it will be useful,
19197163Sdeischen   but WITHOUT ANY WARRANTY; without even the implied warranty of
20197163Sdeischen   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21197163Sdeischen   GNU General Public License for more details.
22226217Sdas
23226217Sdas   You should have received a copy of the GNU General Public License
24226217Sdas   along with this program; if not, write to the Free Software
25226217Sdas   Foundation, Inc., 59 Temple Place - Suite 330,
26269792Sian   Boston, MA 02111-1307, USA.  */
27269792Sian
28269792Sian#ifndef mipsfbsd_TDEP_H
29269792Sian#define mipsfbsd_TDEP_H
30269792Sian
31156608Sdeischenvoid mipsfbsd_supply_reg (char *, int);
32156608Sdeischenvoid mipsfbsd_fill_reg (char *, int);
33156608Sdeischen
34156608Sdeischenvoid mipsfbsd_supply_fpreg (char *, int);
35178803Sdeischenvoid mipsfbsd_fill_fpreg (char *, int);
36178803Sdeischen
37169091Sdeischen#define SIZEOF_STRUCT_REG	(40 * mips_regsize (current_gdbarch))
38269792Sian#define SIZEOF_STRUCT_FPREG	(34 * mips_regsize (current_gdbarch))
39
40#endif /* mipsfbsd_TDEP_H */
41