Files
MyLittleCPU/instruction.cpp

6 lines
141 B
C++
Raw Normal View History

2026-07-14 19:54:23 +10:00
#include "instruction.h"
Instruction::Instruction(BytecodeInstruction bytecodeInst) {
opcode = (InstType)(bytecodeInst & 0b00001111);
}