mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-14 08:12:16 +00:00
* code: Add clang format target, rules and CI workflow * code: Run clang format on sources
21 lines
400 B
C++
21 lines
400 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
|