Initial commit

This commit is contained in:
2026-07-14 19:54:23 +10:00
commit 7aecc9c576
6 changed files with 256 additions and 0 deletions

5
instruction.cpp Normal file
View File

@@ -0,0 +1,5 @@
#include "instruction.h"
Instruction::Instruction(BytecodeInstruction bytecodeInst) {
opcode = (InstType)(bytecodeInst & 0b00001111);
}