feat(furvm): add step function to executor

This commit is contained in:
2026-06-06 23:30:25 +02:00
parent bfdbbb0d5f
commit e7e5f36380
7 changed files with 115 additions and 2 deletions
+4
View File
@@ -22,6 +22,10 @@ int main(void) {
auto executor = furvm::executor::create(context);
executor->push_frame(mainModule, 0);
while ((executor->flags() & furvm::executor_flags::Done) != furvm::executor_flags::Done) {
executor->step();
}
return 0;
}