Duckstation/src/core/cpu_disasm.h

10 lines
198 B
C
Raw Normal View History

2019-09-09 07:01:26 +00:00
#pragma once
#include "YBaseLib/String.h"
#include "cpu_types.h"
namespace CPU {
class Core;
void DisassembleInstruction(String* dest, u32 pc, u32 bits, Core* state = nullptr);
2019-09-09 07:01:26 +00:00
} // namespace CPU