chore(furdb): initialize furdb
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user