NASM 2.00rc2
[nasm.git] / names.c
blob58721f4756fffa5bcc8c4677c63d712fa1387314
1 /* names.c included source file defining instruction and register
2 * names for the Netwide [Dis]Assembler
4 * The Netwide Assembler is copyright (C) 1996 Simon Tatham and
5 * Julian Hall. All rights reserved. The software is
6 * redistributable under the licence given in the file "Licence"
7 * distributed in the NASM archive.
8 */
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"
16 /* Register names automatically generated from regs.dat */
17 #include "regs.c"
19 /* Instruction names automatically generated from insns.dat */
20 #include "insnsn.c"