mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-01-19 04:58:27 +00:00
22 lines
391 B
C++
22 lines
391 B
C++
#pragma once
|
|
|
|
#include <Zydis/Zydis.h>
|
|
#include "common/types.h"
|
|
|
|
namespace Common {
|
|
|
|
class Disassembler {
|
|
public:
|
|
Disassembler();
|
|
~Disassembler();
|
|
|
|
void printInst(ZydisDecodedInstruction& inst, ZydisDecodedOperand* operands, u64 address);
|
|
void printInstruction(void* code, u64 address);
|
|
|
|
private:
|
|
ZydisDecoder m_decoder;
|
|
ZydisFormatter m_formatter;
|
|
};
|
|
|
|
} // namespace Common
|