added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git] / compiler / include / devices / bootblock.h
blob363bbdb867df6ac39efc186949c3cce5f7202195
1 #ifndef DEVICES_BOOTBLOCK_H
2 #define DEVICES_BOOTBLOCK_H
4 /*
5 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
6 $Id$
8 Desc: Floppy BootBlock definition
9 Lang: english
12 #ifndef EXEC_TYPES_H
13 # include <exec/types.h>
14 #endif
16 struct BootBlock
18 UBYTE bb_id[4];
19 LONG bb_chksum;
20 LONG bb_dosblock;
23 #define BOOTSECTS 2
25 #define BBID_DOS {'D', 'O', 'S', '\0'}
26 #define BBID_KICK {'K', 'I', 'C', 'K'}
28 #define BBNAME_DOS 0x444F5300 /* "DOS0" */
29 #define BBNAME_KICK 0x4B49434B /* "KICK" */
31 #endif /* DEVICES_BOOTBLOCK_H */