xref: /openbsd/sys/arch/hppa/include/frame.h (revision 9c0b8818)
1 /*	$OpenBSD: frame.h,v 1.1 1998/06/23 19:45:22 mickey Exp $	*/
2 
3 
4 #ifndef _HPPA_FRAME_H_
5 #define _HPPA_FRAME_H_
6 
7 #define	FRAME_PC	0
8 
9 struct trapframe {
10 	int i;
11 	int tf_regs[10];
12 };
13 
14 #endif
15