arch/m68k-amiga: Vastly reduce interrupt latency
[AROS.git] / arch / m68k-all / include / aros / cpucontext.h
blobe510c2e7884902437be64b9529b77ef824edf241
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 } __attribute__((__packed__));
16 #endif