aboutsummaryrefslogtreecommitdiff
path: root/vm/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'vm/main.c')
-rw-r--r--vm/main.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/vm/main.c b/vm/main.c
index 2b82cd3..2594edc 100644
--- a/vm/main.c
+++ b/vm/main.c
@@ -42,15 +42,6 @@ int interpret_bytecode(const char *filepath)
return ret;
}
-int assemble_instructions(inst_t *instructions, size_t number,
- const char *filepath)
-{
- FILE *fp = fopen(filepath, "wb");
- insts_write_bytecode_file(instructions, number, fp);
- fclose(fp);
- return 0;
-}
-
void usage(const char *program_name, FILE *out)
{
fprintf(out,