mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-14 08:12:16 +00:00
16 lines
No EOL
287 B
C++
16 lines
No EOL
287 B
C++
#pragma once
|
|
|
|
#include "zydis/Zydis.h"
|
|
|
|
class Disassembler
|
|
{
|
|
public:
|
|
Disassembler();
|
|
~Disassembler();
|
|
void printInst(ZydisDecodedInstruction& inst, ZydisDecodedOperand* operands);
|
|
void printInstruction(void* code);
|
|
|
|
private:
|
|
ZydisDecoder m_decoder;
|
|
ZydisFormatter m_formatter;
|
|
}; |