Pristine Ack-5.5
[Ack-5.5.git] / mach / i80 / as / mach1.c
1 /*
2  * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
3  * See the copyright notice in the ACK home directory, in the file "Copyright".
4  */
5 #define RCSID1 "$Id: mach1.c,v 3.3 1994/06/24 12:57:38 ceriel Exp $"
6
7 /*
8  * Intel 8080 register names
9  */
10
11 #define B       0
12 #define C       1
13 #define D       2
14 #define E       3
15 #define H       4
16 #define L       5
17 #define M       6
18 #define A       7
19 #define SP      6
20 #define PSW     6
21
22 #define low3(z)         ((z) & 07)
23 #define fit3(z)         (low3(z) == (z))