265 |
|
extern void FileDiskLayout(loff_t size, uint8 *data, loff_t &start_byte, loff_t &real_size); // Calculate disk image file layout given file size and first 256 data bytes |
266 |
|
extern uint32 DebugUtil(uint32 Selector); // DebugUtil() Replacement |
267 |
|
|
268 |
< |
// Construct four-character-code from string |
268 |
> |
// Construct four-character-code |
269 |
|
#define FOURCC(a,b,c,d) (((uint32)(a) << 24) | ((uint32)(b) << 16) | ((uint32)(c) << 8) | (uint32)(d)) |
270 |
|
|
271 |
|
// Emulator identification codes (4 and 2 characters) |