mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-04 21:55:06 +01:00
fuzz_arm: Test MSR and MRS instructions against unicorn
* Add always_little_endian option to mach unicorn behavior. * Correct CPSR.Mode = Usermode
This commit is contained in:
parent
39ab7cb643
commit
c7d20f3f2f
4 changed files with 35 additions and 13 deletions
|
|
@ -108,6 +108,12 @@ struct UserConfig {
|
|||
|
||||
/// This enables the fast dispatcher.
|
||||
bool enable_fast_dispatch = true;
|
||||
|
||||
/// This option relates to the CPSR.E flag. Enabling this option disables modification
|
||||
/// of CPSR.E by the emulated program, forcing it to 0.
|
||||
/// NOTE: Calling Jit::SetCpsr with CPSR.E=1 while this option is enabled may result
|
||||
/// in unusual behavior.
|
||||
bool always_little_endian = false;
|
||||
};
|
||||
|
||||
} // namespace A32
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue