OSDN Git Service

finalize changelog
[jnethack/source.git] / include / micro.h
1 /* NetHack 3.6  micro.h $NHDT-Date: 1524689515 2018/04/25 20:51:55 $  $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.10 $ */
2 /*      Copyright (c) 2015 by Kenneth Lorber              */
3 /* NetHack may be freely redistributed.  See license for details. */
4
5 /* micro.h - function declarations for various microcomputers */
6
7 #ifndef MICRO_H
8 #define MICRO_H
9
10 extern const char *alllevels, *allbones;
11 extern char levels[], bones[], permbones[], hackdir[];
12
13 extern int ramdisk;
14
15 #ifndef C
16 #define C(c) (0x1f & (c))
17 #endif
18 #ifndef M
19 #define M(c) (((char) 0x80) | (c))
20 #endif
21 #define ABORT C('a')
22
23 #endif /* MICRO_H */