1 #ifndef __alpha_ptrace_h__
2 #define __alpha_ptrace_h__
3 
4 /*
5  * Mostly for OSF/1 compatibility.
6  */
7 
8 #define REG_BASE        0
9 #define NGP_REGS        32
10 #define NFP_REGS        32
11 
12 #define GPR_BASE        REG_BASE
13 #define FPR_BASE        (GPR_BASE+NGP_REGS)
14 #define PC              (FPR_BASE+NFP_REGS)
15 #define SPR_PS          (PC+1)
16 #define NPTRC_REGS      (SPR_PS+1)
17 
18 #endif /* __alpha_ptrace_h__ */
19