mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2025-12-22 13:46:18 +01:00
Interface: Forward declare Arm::LocationDescriptor
This commit is contained in:
parent
9ab7626374
commit
411e804b0d
2 changed files with 7 additions and 4 deletions
|
|
@ -8,11 +8,14 @@
|
|||
|
||||
#include <memory>
|
||||
|
||||
#include "frontend/arm_types.h"
|
||||
#include "common/common_types.h"
|
||||
|
||||
namespace Dynarmic {
|
||||
|
||||
namespace Arm {
|
||||
struct LocationDescriptor;
|
||||
}
|
||||
|
||||
class Jit;
|
||||
|
||||
/// These function pointers may be inserted into compiled code.
|
||||
|
|
@ -82,7 +85,7 @@ public:
|
|||
return is_executing;
|
||||
}
|
||||
|
||||
std::string Disassemble(Arm::LocationDescriptor descriptor);
|
||||
std::string Disassemble(const Arm::LocationDescriptor& descriptor);
|
||||
|
||||
private:
|
||||
bool halt_requested = false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue