Duckstation/src/core/cpu_disasm.h

10 lines
196 B
C
Raw Normal View History

2019-09-09 07:01:26 +00:00
#pragma once
2020-01-10 03:31:12 +00:00
#include "common/string.h"
2019-09-09 07:01:26 +00:00
#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