Moved inst module to lib

As it has no dependencies on vm specifically, and it's more necessary
for any vendors who wish to target the virtual machine, it makes more
sense for inst to be a lib module rather than a vm module.
This commit is contained in:
2023-10-31 21:14:14 +00:00
parent 14a3820e74
commit 5d800d4366
7 changed files with 7 additions and 7 deletions

View File

@@ -16,7 +16,7 @@
#include <stdio.h>
#include <string.h>
#include <vm/inst.h>
#include <lib/inst.h>
#include <vm/runtime.h>
int main(void)