diff options
author | IronClawTrem <louie.nutman@gmail.com> | 2019-08-06 02:17:23 +0100 |
---|---|---|
committer | IronClawTrem <louie.nutman@gmail.com> | 2019-08-06 02:17:23 +0100 |
commit | e5ff1d3d4bc01d98b12d05f9cb85457c7f15c424 (patch) | |
tree | a18bc2026e95b76f820170855ea3a39aa5f03324 /src/tools/lcc/src/bind.c |
first commit
Diffstat (limited to 'src/tools/lcc/src/bind.c')
-rw-r--r-- | src/tools/lcc/src/bind.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/tools/lcc/src/bind.c b/src/tools/lcc/src/bind.c new file mode 100644 index 0000000..bc7b983 --- /dev/null +++ b/src/tools/lcc/src/bind.c @@ -0,0 +1,8 @@ +#include "c.h" +extern Interface nullIR; +extern Interface bytecodeIR; +Binding bindings[] = { + { "null", &nullIR }, + { "bytecode", &bytecodeIR }, + { NULL, NULL }, +}; |