mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-05-13 15:18:37 +02:00
Fix a32 interface
Signed-off-by: crueter <crueter@eden-emu.dev>
This commit is contained in:
parent
8dc7861152
commit
f25d1d190b
1 changed files with 8 additions and 0 deletions
|
|
@ -108,6 +108,10 @@ struct Jit::Impl final {
|
||||||
current_state.exclusive_state = false;
|
current_state.exclusive_state = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
std::string Disassemble() const {
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void RequestCacheInvalidation() {
|
void RequestCacheInvalidation() {
|
||||||
// UNREACHABLE();
|
// UNREACHABLE();
|
||||||
|
|
@ -198,4 +202,8 @@ void Jit::ClearExclusiveState() {
|
||||||
impl->ClearExclusiveState();
|
impl->ClearExclusiveState();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
std::string Jit::Disassemble() const {
|
||||||
|
return impl->Disassemble();
|
||||||
|
}
|
||||||
|
|
||||||
} // namespace Dynarmic::A32
|
} // namespace Dynarmic::A32
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue