repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
revert between 56095 -> 55830 in arch
[AROS.git]
/
arch
/
m68k-all
/
include
/
aros
/
cpucontext.h
blob
4f15b607a309a6d7eb3a14b65884bfdb9f3ad144
1
#ifndef AROS_M68K_CPUCONTEXT_H
2
#define AROS_M68K_CPUCONTEXT_H
3
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
9
{
10
ULONG d
[
8
];
11
IPTR a
[
8
];
12
UWORD sr
;
13
IPTR pc
;
14
}
__packed
;
15
16
#endif