[dynarmic] stub peepholes; fix tests

This commit is contained in:
lizzie 2025-07-19 00:52:41 +01:00 committed by crueter
parent ab631e6b28
commit f414ebdf34
12 changed files with 347 additions and 188 deletions

View file

@ -10,7 +10,8 @@
TEST_CASE("misaligned load/store do not use page_table when detect_misaligned_access_via_page_table is set", "[a64]") {
A64TestEnv env;
Dynarmic::A64::UserConfig conf{&env};
Dynarmic::A64::UserConfig conf{};
conf.callbacks = &env;
conf.page_table = nullptr;
conf.detect_misaligned_access_via_page_table = 128;
conf.only_detect_misalignment_via_page_table_on_page_boundary = true;