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