00001 /* SCCS Id: @(#)micro.h 3.4 1990/02/22 */ 00002 /* micro.h - function declarations for various microcomputers */ 00003 /* NetHack may be freely redistributed. See license for details. */ 00004 00005 #ifndef MICRO_H 00006 #define MICRO_H 00007 00008 extern const char *alllevels, *allbones; 00009 extern char levels[], bones[], permbones[], hackdir[]; 00010 00011 extern int ramdisk; 00012 00013 #ifndef C 00014 #define C(c) (0x1f & (c)) 00015 #endif 00016 #ifndef M 00017 #define M(c) (((char)0x80) | (c)) 00018 #endif 00019 #define ABORT C('a') 00020 00021 #endif /* MICRO_H */