]> Git Repo - binutils.git/blame - gdb/config/ns32k/tm-ns32km3.h
Copyright update in tm-est.h, and minor formatting cleanup.
[binutils.git] / gdb / config / ns32k / tm-ns32km3.h
CommitLineData
c2d751d5
JK
1/* Macro definitions for ns532, Mach 3.0
2 Copyright (C) 1992 Free Software Foundation, Inc.
3
4This file is part of GDB.
5
6This program is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2 of the License, or
9(at your option) any later version.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program; if not, write to the Free Software
18Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20/* Include common definitions for Mach3 systems */
5d76c8e6 21#include "nm-m3.h"
c2d751d5
JK
22
23/* Define offsets to access CPROC stack when it does not have
24 * a kernel thread.
25 */
26#define MACHINE_CPROC_SP_OFFSET 20
27#define MACHINE_CPROC_PC_OFFSET 16
28#define MACHINE_CPROC_FP_OFFSET 12
29
30#include <ns532/psl.h>
31#include <ns532/vmparam.h>
32
33/* Thread flavors used in re-setting the T bit.
34 * @@ this is also bad for cross debugging.
35 */
36#define TRACE_FLAVOR NS532_THREAD_STATE
37#define TRACE_FLAVOR_SIZE NS532_THREAD_STATE_COUNT
38#define TRACE_SET(x,state) \
39 ((struct ns532_thread_state *)state)->psr |= PSR_T
40#define TRACE_CLEAR(x,state) \
41 ((((struct ns532_thread_state *)state)->psr &= ~PSR_T), 1)
42
43/* we can do it */
44#define ATTACH_DETACH 1
45
c2d751d5
JK
46/* Address of end of stack space.
47 * for MACH, see <ns532/vmparam.h>
48 */
49#define STACK_END_ADDR USRSTACK
50
5d76c8e6 51#include "ns32k/tm-umax.h"
This page took 0.209659 seconds and 4 git commands to generate.