names.c
上传用户:yuppie_zhu
上传日期:2007-01-08
资源大小:535k
文件大小:1k
源码类别:

编译器/解释器

开发平台:

C/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 licence given in the file "Licence"
  7.  * distributed in the NASM archive.
  8.  */
  9. static char *reg_names[] = {        /* register names, as strings */
  10.     "ah", "al", "ax", "bh", "bl", "bp", "bx", "ch", "cl",
  11.     "cr0", "cr2", "cr3", "cr4", "cs", "cx", "dh", "di", "dl", "dr0",
  12.     "dr1", "dr2", "dr3", "dr6", "dr7", "ds", "dx", "eax", "ebp",
  13.     "ebx", "ecx", "edi", "edx", "es", "esi", "esp", "fs", "gs",
  14.     "mm0", "mm1", "mm2", "mm3", "mm4", "mm5", "mm6", "mm7", "si",
  15.     "sp", "ss", "st0", "st1", "st2", "st3", "st4", "st5", "st6",
  16.     "st7", "tr3", "tr4", "tr5", "tr6", "tr7",
  17.     "xmm0", "xmm1", "xmm2", "xmm3", "xmm4", "xmm5", "xmm6", "xmm7"
  18. };
  19. static char *conditions[] = {        /* condition code names */
  20.     "a", "ae", "b", "be", "c", "e", "g", "ge", "l", "le", "na", "nae",
  21.     "nb", "nbe", "nc", "ne", "ng", "nge", "nl", "nle", "no", "np",
  22.     "ns", "nz", "o", "p", "pe", "po", "s", "z"
  23. };
  24. /* Instruction names automatically generated from insns.dat */
  25. #include "insnsn.c"