aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2023-10-16 11:32:20 +0100
committerAryadev Chavali <aryadev@aryadevchavali.com>2023-10-16 11:32:20 +0100
commite7616cdeb615772c07aba6aae506a969ad2546fb (patch)
tree7890cd59615a89cbde4317570b5ad57a7840723b
parent7380dd375a31463bc9f0d78305d7e3fbc6e86020 (diff)
downloadovm-e7616cdeb615772c07aba6aae506a969ad2546fb.tar.gz
ovm-e7616cdeb615772c07aba6aae506a969ad2546fb.tar.bz2
ovm-e7616cdeb615772c07aba6aae506a969ad2546fb.zip
Made a sample program, loaded into VM and executed
Seems pretty nice to use, and it works according to GDB.
-rw-r--r--src/main.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
index 81d1232..f47d308 100644
--- a/src/main.c
+++ b/src/main.c
@@ -13,6 +13,7 @@
#include <stdio.h>
#include <string.h>
+#include "./inst.h"
#include "./runtime.h"
int main(void)
@@ -20,5 +21,14 @@ int main(void)
byte stack_data[256];
vm_t vm = {0};
vm_load_stack(&vm, stack_data, ARR_SIZE(stack_data));
+ inst_t instructions[] = {
+ INST_BPUSH(0xfa), INST_BMOV(0), INST_BPUSH(0xfb),
+ INST_BMOV(1), INST_BPUSH(0xfc), INST_BMOV(2),
+ INST_BPUSH(0xfd), INST_BMOV(3), INST_BPUSH_REG(3),
+ INST_BPUSH_REG(2), INST_BPUSH_REG(1), INST_BPUSH_REG(0),
+ };
+ vm_load_program(&vm, instructions, ARR_SIZE(instructions));
+ for (size_t i = 0; i < ARR_SIZE(instructions); ++i)
+ vm_execute(&vm);
return 0;
}