Design
objff.txt
Associated article: Object File Formats
Tags: Design
Published source code accompanying the article by Rand Gray and Deepak Mulchandani in which they discuss object files, which provide a concise and efficient representation for a compiled application, providing all the information needed to represent the state of the entire application at a point in time. In particular, they explore the structure the COFF and IEEE695 object file formats.
_Object File Formats_
by Rand Gray and Deepak Mulchandani
Listing One
struct filehdr {
unsigned short f_magic; /* the magic number of the object file */
unsigned short f_nscns; /* number of sections contained in this object file */
long f_timdat; /* information ...


