mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-01-22 00:05:38 +00:00
8c7a192128
Should've did this in the beginning.
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
|