Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
stenzek
GitHub Repository: stenzek/duckstation
Path: blob/master/src/core/cpu_disasm.h
4223 views
1
// SPDX-FileCopyrightText: 2019-2024 Connor McLaughlin <[email protected]>
2
// SPDX-License-Identifier: 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
17
18