home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / nasm097.zip / LCC / BIND.C next >
C/C++ Source or Header  |  1997-10-01  |  756b  |  24 lines

  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. };
  24.