A dynamic language and bytecode VM.
Go to file
Calvin Rose 8cdc0610e3 Reintroduce a separate Thread objects for threads instead of using arrays. 2017-02-14 20:45:34 -05:00
.gitignore Add simple disassembler for debugging. Does not use labels. 2017-02-11 14:02:48 -05:00
Makefile Add get and set instructions. GC is still buggy and currently 2017-02-12 21:54:18 -05:00
README.md First commit. 2017-02-09 15:02:59 -05:00
compile.c Finish removing FORM type as well as symbol type. 2017-02-13 18:58:56 -05:00
compile.h Make some changes and begin work on macros. 2017-02-12 15:20:41 -05:00
datatypes.h Reintroduce a separate Thread objects for threads instead of using arrays. 2017-02-14 20:45:34 -05:00
disasm.c Add get and set instructions. GC is still buggy and currently 2017-02-12 21:54:18 -05:00
disasm.h Add simple disassembler for debugging. Does not use labels. 2017-02-11 14:02:48 -05:00
ds.c Reintroduce a separate Thread objects for threads instead of using arrays. 2017-02-14 20:45:34 -05:00
ds.h Reintroduce a separate Thread objects for threads instead of using arrays. 2017-02-14 20:45:34 -05:00
main.c Remove FuncEnv and FuncDef types as implementation details 2017-02-13 16:48:11 -05:00
parse.c Finish removing FORM type as well as symbol type. 2017-02-13 18:58:56 -05:00
parse.h First commit. 2017-02-09 15:02:59 -05:00
tags First commit. 2017-02-09 15:02:59 -05:00
temp.script Remove FuncEnv and FuncDef types as implementation details 2017-02-13 16:48:11 -05:00
value.c Finish removing FORM type as well as symbol type. 2017-02-13 18:58:56 -05:00
value.h Remove ValuePrint. Improve ValueToString for reference types. 2017-02-13 00:11:30 -05:00
vm.c Reintroduce a separate Thread objects for threads instead of using arrays. 2017-02-14 20:45:34 -05:00
vm.h Add get and set instructions. GC is still buggy and currently 2017-02-12 21:54:18 -05:00

README.md

tape

A language and vm for embeddable scripting.