Fix a32 interface

Signed-off-by: crueter <crueter@eden-emu.dev>
This commit is contained in:
crueter 2026-04-01 19:57:30 +00:00
parent 8dc7861152
commit f25d1d190b
No known key found for this signature in database
GPG key ID: 425ACD2D4830EBC6

View file

@ -108,6 +108,10 @@ struct Jit::Impl final {
current_state.exclusive_state = false;
}
std::string Disassemble() const {
return {};
}
private:
void RequestCacheInvalidation() {
// UNREACHABLE();
@ -198,4 +202,8 @@ void Jit::ClearExclusiveState() {
impl->ClearExclusiveState();
}
std::string Jit::Disassemble() const {
return impl->Disassemble();
}
} // namespace Dynarmic::A32