Open Source
mac2x86.txt
Associated article: The Mac's Move to Intel
Tags: Open Source
Published source code accompanying the article by Tom Thompson in which he examines issues involved in moving PowerPC-based Macintosh software to Intel x86 processors.
The Mac's Move to Intel
by Tom Thompson
Listing One
#define FAT_MAGIC 0xcafebabe
#define FAT_CIGAM 0xbebafeca /* NXSwapLong(FAT_MAGIC) */
struct fat_header {
uint32_t magic; /* FAT_MAGIC */
uint32_t nfat_arch; /* number of structs that follow */
};
struct fat_...


