1994-10-26 12:07:55 +03:00
|
|
|
/* $NetBSD: frame.h,v 1.5 1994/10/26 09:10:27 cgd Exp $ */
|
1993-06-25 14:28:37 +04:00
|
|
|
|
1994-01-08 22:08:45 +03:00
|
|
|
/* use the common m68k definition */
|
|
|
|
#include <m68k/frame.h>
|
1993-08-08 16:18:27 +04:00
|
|
|
|
1994-02-04 11:19:37 +03:00
|
|
|
/* hack for tracing call stack. used by tracedump() */
|
1993-08-08 16:18:27 +04:00
|
|
|
struct funcall_frame {
|
1994-01-08 22:08:45 +03:00
|
|
|
struct funcall_frame *fr_savfp;
|
|
|
|
int fr_savpc;
|
|
|
|
int fr_arg[1];
|
1993-08-08 16:18:27 +04:00
|
|
|
};
|