Home | History | Annotate | Line # | Download | only in include
frame.h revision 1.3
      1  1.1  glass /*
      2  1.3    cgd  *	$Id: frame.h,v 1.3 1994/01/08 19:08:49 cgd Exp $
      3  1.1  glass  */
      4  1.1  glass 
      5  1.3    cgd /* use the common m68k definition */
      6  1.3    cgd #include <m68k/frame.h>
      7  1.2  glass 
      8  1.3    cgd /* XXX -- stack frame for making boot rom calls. should be elsewere */
      9  1.2  glass struct funcall_frame {
     10  1.3    cgd 	struct funcall_frame *fr_savfp;
     11  1.3    cgd 	int fr_savpc;
     12  1.3    cgd 	int fr_arg[1];
     13  1.2  glass };
     14