17 lines
330 B
C
17 lines
330 B
C
|
#ifndef _DOL_
|
||
|
#define _DOL_
|
||
|
|
||
|
typedef struct {
|
||
|
unsigned int offsetText[7];
|
||
|
unsigned int offsetData[11];
|
||
|
unsigned int addressText[7];
|
||
|
unsigned int addressData[11];
|
||
|
unsigned int sizeText[7];
|
||
|
unsigned int sizeData[11];
|
||
|
unsigned int addressBSS;
|
||
|
unsigned int sizeBSS;
|
||
|
unsigned int entrypoint;
|
||
|
} dolhdr;
|
||
|
|
||
|
#endif
|