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 {
|
2019-09-30 07:32:58 +00:00
|
|
|
class Core;
|
|
|
|
|
|
|
|
void DisassembleInstruction(String* dest, u32 pc, u32 bits, Core* state = nullptr);
|
2019-09-09 07:01:26 +00:00
|
|
|
} // namespace CPU
|