Pristine Ack-5.5
[Ack-5.5.git] / mach / arm / cv / arm.h
1 #define MAXCHUNK        5
2 #define NSECT           4
3
4
5 struct entry{
6         char chunkid[8];
7         long offset;
8         long size;
9 };
10
11 struct armhead{
12         long chunkfileid;
13         long maxchunks;
14         long numchunks;
15         struct entry entries[MAXCHUNK];
16 };
17
18 struct chunkhead{
19         long objtype;
20         long versionid;
21         long narea;
22         long nsymb;
23         long entrya;
24         long entryo;
25 };
26
27 struct areadec{
28         long name;
29         long atal;
30         long size;
31         long nrel;
32         long base;
33 };
34