Was going to split out Interpreter_Primitives.c from Interpreter.c but decided to conquer and then divide.
Along the way I fixed a variable declaration that VBCC complained about. I'm also going to have to make my own vbcc friendly makefile now that just building *.c doesn't work on account of two main functions :-)
There's not much in here really but its the first bit of actual code outside of compiler fixes I have written so before I go any further I figured you should take a look at how I'm doing it.
Was going to split out
Interpreter_Primitives.c
fromInterpreter.c
but decided to conquer and then divide.Along the way I fixed a variable declaration that VBCC complained about. I'm also going to have to make my own vbcc friendly makefile now that just building *.c doesn't work on account of two
main
functions :-)There's not much in here really but its the first bit of actual code outside of compiler fixes I have written so before I go any further I figured you should take a look at how I'm doing it.