regularized spelling of license to match name of LICENSE file
[platform/upstream/nasm.git] / names.c
1 /* names.c   included source file defining instruction and register
2  *           names for the Netwide [Dis]Assembler
3  *
4  * The Netwide Assembler is copyright (C) 1996 Simon Tatham and
5  * Julian Hall. All rights reserved. The software is
6  * redistributable under the license given in the file "LICENSE"
7  * distributed in the NASM archive.
8  */
9
10 static const char *conditions[] = {     /* condition code names */
11     "a", "ae", "b", "be", "c", "e", "g", "ge", "l", "le", "na", "nae",
12     "nb", "nbe", "nc", "ne", "ng", "nge", "nl", "nle", "no", "np",
13     "ns", "nz", "o", "p", "pe", "po", "s", "z"
14 };
15
16 /* Register names automatically generated from regs.dat */
17 #include "regs.c"
18
19 /* Instruction names automatically generated from insns.dat */
20 #include "insnsn.c"