summaryrefslogtreecommitdiff
path: root/68000/include/ureg.h
blob: e237cb3d671fde01ae1f8a06f4b78170b659686d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
struct Ureg
{
	ulong	r0;
	ulong	r1;
	ulong	r2;
	ulong	r3;
	ulong	r4;
	ulong	r5;
	ulong	r6;
	ulong	r7;
	ulong	a0;
	ulong	a1;
	ulong	a2;
	ulong	a3;
	ulong	a4;
	ulong	a5;
	ulong	a6;
	ulong	sp;
	ulong	usp;
	ulong	magic;		/* for db to find bottom of ureg */
	ushort	sr;
	ulong	pc;
	ushort	vo;
#ifndef	UREGVARSZ
#define	UREGVARSZ 23		/* for 68040; 15 is enough on 68020 */
#endif
	uchar	microstate[UREGVARSZ];	/* variable-sized portion */
};