#ifndef DEVICES_BOOTBLOCK_H
#define DEVICES_BOOTBLOCK_H
/*
** $Filename: devices/bootblock.h $
** $Release: 1.3 $
**
** BootBlock definition: 
**
** (C) Copyright 1985,1986,1987,1988 Commodore-Amiga, Inc.
** All Rights Reserved
*/

struct BootBlock {
 UBYTE bb_id[4]; 
 LONG bb_chksum; 
 LONG bb_dosblock; 
};

#define BOOTSECTS 2 

#define BBID_DOS { 'D', 'O', 'S', '\0' }
#define BBID_KICK { 'K', 'I', 'C', 'K' }

#define BBNAME_DOS (('D'<<24)|('O'<<16)|('S'<<8))
#define BBNAME_KICK (('K'<<24)|('I'<<16)|('C'<<8)|('K'))

#endif 
