6 lines
141 B
C++
6 lines
141 B
C++
#include "instruction.h"
|
|
|
|
Instruction::Instruction(BytecodeInstruction bytecodeInst) {
|
|
opcode = (InstType)(bytecodeInst & 0b00001111);
|
|
}
|