# | Line 254 | Line 254 | extern void FileDiskLayout(loff_t size, | |
---|---|---|
254 | // Construct four-character-code from string | |
255 | #define FOURCC(a,b,c,d) (((uint32)(a) << 24) | ((uint32)(b) << 16) | ((uint32)(c) << 8) | (uint32)(d)) | |
256 | ||
257 | + | // Emulator identification codes (4 and 2 characters) |
258 | + | const uint32 EMULATOR_ID_4 = 0x62617369; // 'basi' |
259 | + | const uint16 EMULATOR_ID_2 = 0x6261; // 'ba' |
260 | + | |
261 | // Test if basic MacOS initializations (of the ROM) are done | |
262 | static inline bool HasMacStarted(void) | |
263 | { |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |