* Moved lcc and q3asm into code/tools

This commit is contained in:
Tim Angus 2005-10-04 15:18:22 +00:00
parent b1cef6352e
commit ad118b9baf
452 changed files with 0 additions and 0 deletions

23
code/tools/lcc/src/bind.c Normal file
View file

@ -0,0 +1,23 @@
#include "c.h"
extern Interface alphaIR;
extern Interface mipsebIR, mipselIR;
extern Interface sparcIR, solarisIR;
extern Interface x86IR, x86linuxIR;
extern Interface symbolicIR, symbolic64IR;
extern Interface nullIR;
extern Interface bytecodeIR;
Binding bindings[] = {
/*{ "alpha/osf", &alphaIR },*/
/*{ "mips/irix", &mipsebIR },*/
/*{ "mips/ultrix", &mipselIR },*/
/*{ "sparc/sun", &sparcIR },*/
/*{ "sparc/solaris", &solarisIR },*/
/*{ "x86/win32", &x86IR },*/
/*{ "x86/linux", &x86linuxIR },*/
{ "symbolic/osf", &symbolic64IR },
{ "symbolic/irix", &symbolicIR },
{ "symbolic", &symbolicIR },
{ "null", &nullIR },
{ "bytecode", &bytecodeIR },
{ NULL, NULL },
};