20 lines
468 B
C
Raw Normal View History

2016-08-25 18:22:08 +01:00
/* 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 {
2018-01-04 21:12:02 +00:00
namespace A32 {
2016-08-25 18:22:08 +01:00
std::string DisassembleArm(std::uint32_t instruction);
std::string DisassembleThumb16(std::uint16_t instruction);
2018-01-04 21:12:02 +00:00
} // namespace A32
2016-08-25 18:22:08 +01:00
} // namespace Dynarmic