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
Test initialisation of MUIA_List_AdjustWidth and MUIA_List_AdjustHeight, and
[AROS.git]
/
arch
/
m68k-all
/
include
/
aros
/
cpucontext.h
blob
e510c2e7884902437be64b9529b77ef824edf241
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
}
__attribute__
((
__packed__
));
15
16
#endif