mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-12-04 11:35:39 +00:00
17 lines
422 B
C++
17 lines
422 B
C++
// SPDX-FileCopyrightText: 2019-2023 Connor McLaughlin <stenzek@gmail.com>
|
|
// SPDX-License-Identifier: (GPL-3.0 OR CC-BY-NC-ND-4.0)
|
|
|
|
#pragma once
|
|
#include "cpu_types.h"
|
|
|
|
class SmallStringBase;
|
|
|
|
namespace CPU {
|
|
|
|
void DisassembleInstruction(SmallStringBase* dest, u32 pc, u32 bits);
|
|
void DisassembleInstructionComment(SmallStringBase* dest, u32 pc, u32 bits);
|
|
|
|
const char* GetGTERegisterName(u32 index);
|
|
|
|
} // namespace CPU
|