MCPcopy Create free account
hub / github.com/connorjaydunn/BinaryShield / VirtualInstruction

Method VirtualInstruction

src/virtual_instruction.cpp:3–8  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1#include "virtual_instruction.h"
2
3VirtualInstruction::VirtualInstruction(DWORD vmHandlerRva, long long operand, BYTE operandSize)
4 : vmHandlerRva(vmHandlerRva),
5 operand(operand),
6 operandSize(operandSize/8),
7 hasOperand(true)
8{};
9
10VirtualInstruction::VirtualInstruction(DWORD vmHandlerRva) : vmHandlerRva(vmHandlerRva) {};
11

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected