mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-24 06:35:42 +00:00
10 lines
196 B
C++
10 lines
196 B
C++
#pragma once
|
|
#include "common/string.h"
|
|
#include "cpu_types.h"
|
|
|
|
namespace CPU {
|
|
class Core;
|
|
|
|
void DisassembleInstruction(String* dest, u32 pc, u32 bits, Core* state = nullptr);
|
|
} // namespace CPU
|