Duckstation/src/core/cpu_disasm.h

12 lines
378 B
C
Raw Normal View History

// SPDX-FileCopyrightText: 2019-2022 Connor McLaughlin <stenzek@gmail.com>
// SPDX-License-Identifier: (GPL-3.0 OR CC-BY-NC-ND-4.0)
2019-09-09 07:01:26 +00:00
#pragma once
2020-01-10 03:31:12 +00:00
#include "common/string.h"
2019-09-09 07:01:26 +00:00
#include "cpu_types.h"
namespace CPU {
void DisassembleInstruction(String* dest, u32 pc, u32 bits);
void DisassembleInstructionComment(String* dest, u32 pc, u32 bits, Registers* regs);
2019-09-09 07:01:26 +00:00
} // namespace CPU