#ifndef _REG_H_
#define _REG_H_


/* structure to save all registers  */
struct m68k_regs {
	long            d0, d1, d2, d3, d4, d5, d6, d7;
	long            a0, a1, a2, a3, a4, a5, a6, a7;
};

/* structure to save the whole processor status   */
struct pstat {
	struct m68k_regs regs;
	long            usp;
	long            pc;
	short           sr;
	unsigned int    flags;
};

#endif
