Duckstation/src/core/cpu_disasm.h

9 lines
245 B
C
Raw Normal View History

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