diff options
Diffstat (limited to 'gdb/nlm/alpha.h')
-rw-r--r-- | gdb/nlm/alpha.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/gdb/nlm/alpha.h b/gdb/nlm/alpha.h index 8fc7ab1..440faff 100644 --- a/gdb/nlm/alpha.h +++ b/gdb/nlm/alpha.h @@ -1,5 +1,3 @@ -#include "alpha-patch.h" - /* Register values. All of these values *MUST* agree with tm.h */ #define RA_REGNUM 26 /* Contains return address value */ #define SP_REGNUM 30 /* Contains address of top of stack */ @@ -12,8 +10,16 @@ #define ExceptionPC ExceptionRegs[SF_REG_PC].lo #define DECR_PC_AFTER_BREAK 0 /* NT's Palcode gets this right! */ #define BREAKPOINT {0x80, 0, 0, 0} /* call_pal bpt */ -unsigned char breakpoint_insn; +extern unsigned char breakpoint_insn[]; #define BREAKPOINT_SIZE 4 /*#define flush_i_cache() asm("call_pal 0x86")*/ +/* Temporary defs until DEC gets their netware includes straightened out */ + +#include "altdebug.h" /* Get StackFrame structure */ + +#define isspace(C) (C == '\n' || C == '\r' || C == ' ' || C == '\t') +int Breakpoint (int __arg); + +typedef unsigned long ULONG; |