1 #ifndef DEVICES_BOOTBLOCK_H
    2 #define DEVICES_BOOTBLOCK_H
    3 
    4 /*
    5 	bootblock include
    6 
    7 	Copyright © 2002 The MorphOS Development Team, All Rights Reserved.
    8 */
    9 
   10 #ifndef EXEC_TYPES_H
   11 # include <exec/types.h>
   12 #endif
   13 
   14 #pragma pack(2)
   15 
   16 
   17 struct BootBlock
   18 {
   19 	UBYTE bb_id[4];
   20 	LONG  bb_chksum;
   21 	LONG  bb_dosblock;
   22 };
   23 
   24 
   25 #define BOOTSECTS  2
   26 
   27 #define BBID_DOS   {'D','O','S','\0'}
   28 #define BBID_KICK  {'K','I','C','K'}
   29 
   30 #define BBNAME_DOS   0x444F5300
   31 #define BBNAME_KICK  0x4B49434B
   32 
   33 
   34 #pragma pack()
   35 
   36 #endif /* DEVICES_BOOTBLOCK_H */