URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rc203soc/] [sw/] [uClinux/] [include/] [asm-i960/] [traps-kma.h] - Rev 1777
Go to most recent revision | Compare with Previous | Blame | View Log
/* * FILE: traps.h * AUTHOR: kma * DESCR: frame, pt_regs, etc. */ #ifndef TRAPS_H #define TRAPS_H #ident "$Id: traps-kma.h,v 1.1 2005-12-20 11:35:39 jcastillo Exp $" #include <asm/ptrace.h> #include <asm/i960.h> /* structure of stack frame: note that since the i960 stacks grow up, * and we store our regs on the top, ptregs is at the end of each * member of the union. */ struct frame { union { struct pt_regs regs; }; }; #endif
Go to most recent revision | Compare with Previous | Blame | View Log