NEWS APPS DOCS ABOUT | ||||
Autodocs Include classes clib datatypes devices audio.h / .i bootblock.h / .i cd.h / .i clipboard.h / .i console.h / .i conunit.h / .i gameport.h / .i hardblocks.h / .i input.h / .i inputevent.h / .i keyboard.h / .i keymap.h / .i narrator.h / .i parallel.h / .i printer.h / .i prtbase.h / .i prtgfx.h / .i scsidisk.h / .i serial.h / .i timer.h / .i trackdisk.h / .i diskfont dos exec gadgets graphics hardware images intuition libraries pragma pragmas prefs proto reaction resources rexx utility workbench GuruMeditation | #ifndef DEVICES_BOOTBLOCK_H #define DEVICES_BOOTBLOCK_H /* ** $VER: bootblock.h 36.6 (5.11.1990) ** Includes Release 45.1 ** ** floppy BootBlock definition ** ** (C) Copyright 1985-2001 Amiga, Inc. ** All Rights Reserved */ #ifndef EXEC_TYPES_H #include <exec/types.h> #endif struct BootBlock { UBYTE bb_id[4]; /* 4 character identifier */ LONG bb_chksum; /* boot block checksum (balance) */ LONG bb_dosblock; /* reserved for DOS patch */ }; #define BOOTSECTS 2 /* 1K bootstrap */ #define BBID_DOS { 'D', 'O', 'S', '\0' } #define BBID_KICK { 'K', 'I', 'C', 'K' } #define BBNAME_DOS 0x444F5300 /* 'DOS\0' */ #define BBNAME_KICK 0x4B49434B /* 'KICK' */ #endif /* DEVICES_BOOTBLOCK_H */ Comments |
$VER: d0.se 1.14 Copyright © 2011-2024 Tobias Geijersson support at d0 dot se |