2002-05-01 04:51:32 +08:00
|
|
|
/* names.c included source file defining instruction and register
|
|
|
|
* names for the Netwide [Dis]Assembler
|
|
|
|
*
|
|
|
|
* The Netwide Assembler is copyright (C) 1996 Simon Tatham and
|
|
|
|
* Julian Hall. All rights reserved. The software is
|
|
|
|
* redistributable under the licence given in the file "Licence"
|
|
|
|
* distributed in the NASM archive.
|
|
|
|
*/
|
|
|
|
|
2007-04-14 00:47:53 +08:00
|
|
|
static const char *conditions[] = { /* condition code names */
|
2002-05-01 04:51:32 +08:00
|
|
|
"a", "ae", "b", "be", "c", "e", "g", "ge", "l", "le", "na", "nae",
|
|
|
|
"nb", "nbe", "nc", "ne", "ng", "nge", "nl", "nle", "no", "np",
|
|
|
|
"ns", "nz", "o", "p", "pe", "po", "s", "z"
|
|
|
|
};
|
2002-05-01 04:54:13 +08:00
|
|
|
|
2002-06-06 10:41:20 +08:00
|
|
|
/* Register names automatically generated from regs.dat */
|
|
|
|
#include "regs.c"
|
|
|
|
|
2002-05-01 04:54:13 +08:00
|
|
|
/* Instruction names automatically generated from insns.dat */
|
|
|
|
#include "insnsn.c"
|