diff options
author | Camil Staps | 2016-09-24 15:16:52 +0200 |
---|---|---|
committer | Camil Staps | 2016-09-24 15:16:52 +0200 |
commit | c4da1ad2bad45348d4fc32870128586408d8f338 (patch) | |
tree | 749c84543d01173e4ab0fbb6e931517b20131370 | |
parent | Added fuspel (diff) |
-rw-r--r-- | firmware/Makefile | 1 | ||||
m--------- | firmware/fuspel | 0 | ||||
-rw-r--r-- | firmware/main.c | 4 |
3 files changed, 5 insertions, 0 deletions
diff --git a/firmware/Makefile b/firmware/Makefile index d1493ea..414bce9 100644 --- a/firmware/Makefile +++ b/firmware/Makefile @@ -37,6 +37,7 @@ _DEPS:=\ t6963c/terminal.h\ fuspel/interpreter/code.h\ fuspel/interpreter/eval.h\ + fuspel/interpreter/graphs.h\ fuspel/interpreter/lex.h\ fuspel/interpreter/log.h\ fuspel/interpreter/mem.h\ diff --git a/firmware/fuspel b/firmware/fuspel -Subproject c2807cad6ee36339d1af3e103946d48a3f8cc3b +Subproject e08cc0aa5f0eb0b99fb553623dd0600cf8aeb57 diff --git a/firmware/main.c b/firmware/main.c index 11f249f..acec256 100644 --- a/firmware/main.c +++ b/firmware/main.c @@ -29,6 +29,10 @@ void init_terminal(void) { term->update = t6963c_update_terminal; } +fuspel *import(fuspel *already_parsed, char *name) { + return already_parsed; +} + static char* program = "mul a b = code mul a b;" "sub a b = code sub a b;" |