preproc: add %[i]defid support
[nasm.git] / lcc / bind.c
blob286431d757af3f3a53fd4a468bbb7c4735f8e0fb
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