mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-07 15:08:22 +01:00
A32: Add define_unpredictable_behaviour option
This commit is contained in:
parent
b0abaa8312
commit
a12854857b
9 changed files with 31 additions and 16 deletions
|
|
@ -82,6 +82,11 @@ struct UserConfig {
|
|||
|
||||
// Coprocessors
|
||||
std::array<std::shared_ptr<Coprocessor>, 16> coprocessors;
|
||||
|
||||
/// This option relates to translation. Generally when we run into an unpredictable
|
||||
/// instruction the ExceptionRaised callback is called. If this is true, we define
|
||||
/// definite behaviour for some unpredictable instructions.
|
||||
bool define_unpredictable_behaviour = false;
|
||||
};
|
||||
|
||||
} // namespace A32
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue