/* Atari nostalgia:) * * BIOS */ #define E_OK 0 #define ERROR -1 /* generic error */ #define E_SEEK -6 /* seek error */ #define E_WRITF -10 /* write fault */ #define E_READF -11 /* read fault */ /* GEMDOS */ #define EFILNF -33 /* file not found */ #define ENSMEM -39 /* out of memory */ void err_exit (int err);