mirror of https://github.com/stenzek/duckstation
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
378 B
C++
12 lines
378 B
C++
// SPDX-FileCopyrightText: 2019-2022 Connor McLaughlin <stenzek@gmail.com>
|
|
// SPDX-License-Identifier: (GPL-3.0 OR CC-BY-NC-ND-4.0)
|
|
|
|
#pragma once
|
|
#include "common/string.h"
|
|
#include "cpu_types.h"
|
|
|
|
namespace CPU {
|
|
void DisassembleInstruction(String* dest, u32 pc, u32 bits);
|
|
void DisassembleInstructionComment(String* dest, u32 pc, u32 bits, Registers* regs);
|
|
} // namespace CPU
|