chore(furdb): initialize furdb

This commit is contained in:
2026-08-12 14:17:16 +02:00
parent c68763f785
commit d419b62225
7 changed files with 222 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
#include "context.hpp"
void context::run() {
if ((executor->flags() & furvm::executor_flags::Done) != furvm::executor_flags::Done)
executor->push_frame(mod, *mainFunction);
while ((executor->flags() & furvm::executor_flags::Done) != furvm::executor_flags::Done) {
executor->step();
}
}