mirror of
https://github.com/yuzu-mirror/dynarmic.git
synced 2026-04-04 22:07:39 +00:00
tests: Add some Arm tests
This commit is contained in:
parent
f85b86486b
commit
65d27f3486
3 changed files with 356 additions and 2 deletions
|
|
@ -23,7 +23,7 @@ struct WriteRecord {
|
|||
u64 data;
|
||||
};
|
||||
|
||||
bool operator==(const WriteRecord& a, const WriteRecord& b) {
|
||||
static bool operator==(const WriteRecord& a, const WriteRecord& b) {
|
||||
return std::tie(a.size, a.address, a.data) == std::tie(b.size, b.address, b.data);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue