diff options
Diffstat (limited to 'sys/arch/hppa/include/frame.h')
-rw-r--r-- | sys/arch/hppa/include/frame.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/sys/arch/hppa/include/frame.h b/sys/arch/hppa/include/frame.h new file mode 100644 index 00000000000..bb7f5173338 --- /dev/null +++ b/sys/arch/hppa/include/frame.h @@ -0,0 +1,14 @@ +/* $OpenBSD: frame.h,v 1.1 1998/06/23 19:45:22 mickey Exp $ */ + + +#ifndef _HPPA_FRAME_H_ +#define _HPPA_FRAME_H_ + +#define FRAME_PC 0 + +struct trapframe { + int i; + int tf_regs[10]; +}; + +#endif |