xo-interpreter2: scaffold repl + alloc measurement frameowkr

This commit is contained in:
Roland Conybeare 2026-02-02 21:55:34 -05:00
commit 6db1ddc802
7 changed files with 152 additions and 45 deletions

View file

@ -0,0 +1,18 @@
/** @file VsmInstr.cpp
*
* @author Roland Conybeare, Feb 2026
**/
#include "VsmInstr.hpp"
namespace xo {
namespace scm {
VsmInstr
VsmInstr::c_halt = VsmInstr(vsm_opcode::halt);
VsmInstr
VsmInstr::c_eval = VsmInstr(vsm_opcode::eval);
} /*namespace scm*/
} /*namespace xo*/
/* end VsmInstr.cpp */