Files
nethack/include/micro.h
T
nhmall 198ac655e5 more 3.7 vestiges
A little later than this probably should have been committed.
2026-06-20 18:26:43 -04:00

19 lines
491 B
C

/* NetHack 5.0 micro.h $NHDT-Date: 1781973082 2026/06/20 16:31:22 $ $NHDT-Branch: NetHack-5.0 $:$NHDT-Revision: 1.14 $ */
/* Copyright (c) 2015 by Kenneth Lorber */
/* NetHack may be freely redistributed. See license for details. */
/* micro.h - function declarations for various microcomputers */
#ifndef MICRO_H
#define MICRO_H
#ifndef C
#define C(c) (0x1f & (c))
#endif
#ifndef M
#define M(c) (((char) 0x80) | (c))
#endif
#define ABORT C('a')
#endif /* MICRO_H */