feat(furvm): introduce module, instruction and constant

This commit is contained in:
2026-06-05 17:55:40 +02:00
parent 2f9328d85a
commit 66fdd1dc9c
7 changed files with 337 additions and 5 deletions
+2
View File
@@ -5,6 +5,8 @@
int main(void) {
furvm::context context;
auto mainModule = context.emplace();
return 0;
}
+3
View File
@@ -0,0 +1,3 @@
#include "furvm/module.hpp"
namespace furvm {}