cpu_disasm.h (422B)
1 // SPDX-FileCopyrightText: 2019-2023 Connor McLaughlin <stenzek@gmail.com> 2 // SPDX-License-Identifier: (GPL-3.0 OR CC-BY-NC-ND-4.0) 3 4 #pragma once 5 #include "cpu_types.h" 6 7 class SmallStringBase; 8 9 namespace CPU { 10 11 void DisassembleInstruction(SmallStringBase* dest, u32 pc, u32 bits); 12 void DisassembleInstructionComment(SmallStringBase* dest, u32 pc, u32 bits); 13 14 const char* GetGTERegisterName(u32 index); 15 16 } // namespace CPU