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

编译器/解释器

开发平台:

C/C++

  1. #include "c.h"
  2. extern Interface nullIR,   symbolicIR;
  3. extern Interface mipsebIR, mipselIR;
  4. extern Interface sparcIR,  solarisIR;
  5. extern Interface x86IR,    x86nasmIR;
  6. Binding bindings[] = {
  7. "symbolic",      &symbolicIR,
  8. "mips-irix",     &mipsebIR,
  9. "mips-ultrix",   &mipselIR,
  10. "sparc-sun",     &sparcIR,
  11. "sparc-solaris", &solarisIR,
  12. "x86-dos",       &x86IR,
  13. "x86-nasm",      &x86nasmIR,
  14. "symbolic/irix", &symbolicIR, /* omit */
  15. "mips/irix",     &mipsebIR, /* omit */
  16. "mips/ultrix",   &mipselIR, /* omit */
  17. "sparc/sun",     &sparcIR, /* omit */
  18. "sparc/solaris", &solarisIR, /* omit */
  19. "x86/dos",       &x86IR, /* omit */
  20. "x86/nasm",      &x86nasmIR, /* omit */
  21. "null",          &nullIR,
  22. NULL,            NULL
  23. };