Split vm/runtime.c into two files

struct.c is used for the general construction, inspection and deletion
of the virtual machine structure (vm_t).  runtime defines the
execution routines, error enum, lookup tables, etc.
This commit is contained in:
2024-04-25 03:17:03 +05:30
parent a8f8a09752
commit 159501168c
6 changed files with 338 additions and 291 deletions

View File

@@ -14,9 +14,11 @@
#include <stdio.h>
#include <string.h>
#include "./runtime.h"
#include <lib/inst.h>
#include "./runtime.h"
#include "./struct.h"
void usage(const char *program_name, FILE *out)
{
fprintf(out,