Finished conio, most of string library, changed

output and bytecode to textarea
This commit is contained in:
2015-04-22 00:14:46 -04:00
parent 10f5a43a17
commit eb1f48ad9c
5 changed files with 87 additions and 54 deletions

View File

@@ -525,6 +525,12 @@ function execute(file, callbacks, v) {
return run_vm(state);
}
function push(v) {
console.log("Pretend I pushed " + v);
}
exports.execute = execute;
exports.initialize_vm = initialize_vm;
exports.run_vm = run_vm;
exports.push = push;