// SPDX-FileCopyrightText: 2019-2024 Connor McLaughlin // SPDX-License-Identifier: 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