#ifndef DEVICES_BOOTBLOCK_H
#define DEVICES_BOOTBLOCK_H
/*
** $Filename: devices/bootblock.h $
** $Release: 2.04 Includes, V37.4 $
** $Revision: 36.6 $
** $Date: 90/11/05 $
**
** floppy BootBlock definition
**
** (C) Copyright 1985-1991 Commodore-Amiga, Inc.
** All Rights Reserved
*/

#ifndef EXEC_TYPES_H
#include "exec/types.h"
#endif

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 0x444F5300 
#define BBNAME_KICK 0x4B49434B 

#endif 
