home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / gnu / nethack-3.1 / include / micro.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-01-16  |  421 b   |  18 lines

  1. /*    SCCS Id: @(#)micro.h    3.1    90/22/02    */
  2. /* micro.h - function declarations for various microcomputers */
  3. /* NetHack may be freely redistributed.  See license for details. */
  4.  
  5. #ifndef MICRO_H
  6. #define MICRO_H
  7.  
  8. extern const char *alllevels, *allbones;
  9. extern char levels[], bones[], permbones[], hackdir[];
  10.  
  11. extern int ramdisk;
  12.  
  13. #define C(c)    (0x1f & (c))
  14. #define M(c)    (0x80 | (c))
  15. #define ABORT C('a')
  16.  
  17. #endif /* MICRO_H */
  18.