From c4da1ad2bad45348d4fc32870128586408d8f338 Mon Sep 17 00:00:00 2001 From: Camil Staps Date: Sat, 24 Sep 2016 15:16:52 +0200 Subject: Update fuspel --- firmware/Makefile | 1 + firmware/fuspel | 2 +- firmware/main.c | 4 ++++ 3 files changed, 6 insertions(+), 1 deletion(-) 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 index c2807ca..e08cc0a 160000 --- a/firmware/fuspel +++ b/firmware/fuspel @@ -1 +1 @@ -Subproject commit c2807cad6ee36339d1af3e103946d48a3f8cc3bf +Subproject commit e08cc0aa5f0eb0b99fb553623dd0600cf8aeb572 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;" -- cgit v1.2.3