xo-interpreter: scaffold interpreter read-eval-print loop

This commit is contained in:
Roland Conybeare 2025-11-19 16:46:55 -05:00
commit 3956635920
7 changed files with 222 additions and 4 deletions

View file

@ -0,0 +1,16 @@
/** @file VsmInstr.cpp
*
* @author Roland Conybeare, Nov 2025
**/
#include "VsmInstr.hpp"
namespace xo {
namespace scm {
VsmInstr::VsmInstr(Opcode opcode,
std::string_view name) : opcode_{opcode}, name_{name}
{}
}
}
/* end VsmInstr.cpp */