mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-05-02 15:55:43 -04:00
9 lines
245 B
C++
9 lines
245 B
C++
#pragma once
|
|
#include "common/string.h"
|
|
#include "cpu_types.h"
|
|
|
|
namespace CPU {
|
|
void DisassembleInstruction(String* dest, u32 pc, u32 bits);
|
|
void DisassembleInstructionComment(String* dest, u32 pc, u32 bits, Registers* regs);
|
|
} // namespace CPU
|