Files
MyLittleCPU/instruction.cpp
2026-07-14 19:54:23 +10:00

6 lines
141 B
C++

#include "instruction.h"
Instruction::Instruction(BytecodeInstruction bytecodeInst) {
opcode = (InstType)(bytecodeInst & 0b00001111);
}