/* ============================================================================ errdefs.h -- Buchla 700 BIOS error codes Version 1 -- 1987-02-04 -- D.N. Lynx Crowe ============================================================================ */ #pragma once #define ERR01 -1 /* All purpose general error code */ #define ERR02 -2 /* Drive not ready */ #define ERR03 -3 /* Unknown command */ #define ERR04 -4 /* CRC error */ #define ERR05 -5 /* Invalid request */ #define ERR06 -6 /* Seek error */ #define ERR07 -7 /* Unknown media */ #define ERR08 -8 /* Sector not found */ #define ERR09 -9 /* End of media or out of paper */ #define ERR10 -10 /* Write fault */ #define ERR11 -11 /* Read fault */ #define ERR12 -12 /* General mishap */ #define ERR13 -13 /* Write protected */ #define ERR14 -14 /* Media change */ #define ERR15 -15 /* Unknown device */ #define ERR16 -16 /* Bad sectors */ #define ERR17 -17 /* Insert disk */