dynarmic/include/dynarmic/disassembler.h
2016-08-26 00:44:50 +01:00

19 lines
468 B
C++

/* This file is part of the dynarmic project.
* Copyright (c) 2016 MerryMage
* This software may be used and distributed according to the terms of the GNU
* General Public License version 2 or any later version.
*/
#pragma once
#include <cstdint>
#include <string>
namespace Dynarmic {
namespace Arm {
std::string DisassembleArm(std::uint32_t instruction);
std::string DisassembleThumb16(std::uint16_t instruction);
} // namespace Arm
} // namespace Dynarmic