1 #include "Instruction.h"
7 Instruction::Instruction(Platform::MemoryAddress address
, Misc::SmartPointer
<Block
> raw
)
8 : address(address
), raw(raw
) {
13 void Instruction::parse_opcode() {
14 #if AESALON_PLATFORM == AESALON_PLATFORM_x86 || AESALON_PLATFORM == AESALON_PLATFORM_x86_64
15 if(*raw
->get_data(0) == 0x0f) { /* it's a two-byte opcode */ }
20 } // namespace Monitor
21 } // namespace Aesalon