2023-09-20 13:49:14 +00:00
|
|
|
// SPDX-FileCopyrightText: 2019-2023 Connor McLaughlin <stenzek@gmail.com>
|
2022-12-04 11:03:45 +00:00
|
|
|
// SPDX-License-Identifier: (GPL-3.0 OR CC-BY-NC-ND-4.0)
|
|
|
|
|
2019-09-09 07:01:26 +00:00
|
|
|
#pragma once
|
|
|
|
#include "cpu_types.h"
|
|
|
|
|
2023-09-20 13:49:14 +00:00
|
|
|
class SmallStringBase;
|
|
|
|
|
2019-09-09 07:01:26 +00:00
|
|
|
namespace CPU {
|
2023-12-16 14:37:06 +00:00
|
|
|
|
2023-09-20 13:49:14 +00:00
|
|
|
void DisassembleInstruction(SmallStringBase* dest, u32 pc, u32 bits);
|
2024-01-20 16:26:26 +00:00
|
|
|
void DisassembleInstructionComment(SmallStringBase* dest, u32 pc, u32 bits);
|
2023-12-16 14:37:06 +00:00
|
|
|
|
|
|
|
const char* GetGTERegisterName(u32 index);
|
|
|
|
|
2019-09-09 07:01:26 +00:00
|
|
|
} // namespace CPU
|