mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-04-30 04:15:42 -04:00
10 lines
198 B
C++
10 lines
198 B
C++
#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);
|
|
} // namespace CPU
|