revert between 56095 -> 55830 in arch
[AROS.git] / arch / m68k-all / include / aros / cpucontext.h
blob4f15b607a309a6d7eb3a14b65884bfdb9f3ad144
1 #ifndef AROS_M68K_CPUCONTEXT_H
2 #define AROS_M68K_CPUCONTEXT_H
4 /*
5 * We don't need ULONG Flags in this context, since the
6 * SysBase->AttnFlags provides the CPU type information.
7 */
8 struct ExceptionContext
10 ULONG d[8];
11 IPTR a[8];
12 UWORD sr;
13 IPTR pc;
14 } __packed;
16 #endif